aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/insdel.c b/src/insdel.c
index d7b7ff05e2c..08349fffe45 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -827,7 +827,7 @@ insert_1_both (const char *string,
827 827
828 eassert (GPT <= GPT_BYTE); 828 eassert (GPT <= GPT_BYTE);
829 829
830 /* The insert may have been in the unchanged region, so check again. */ 830 /* The insert may have been in the unchanged region, so check again. */
831 if (Z - GPT < END_UNCHANGED) 831 if (Z - GPT < END_UNCHANGED)
832 END_UNCHANGED = Z - GPT; 832 END_UNCHANGED = Z - GPT;
833 833
@@ -956,7 +956,7 @@ insert_from_string_1 (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
956 956
957 eassert (GPT <= GPT_BYTE); 957 eassert (GPT <= GPT_BYTE);
958 958
959 /* The insert may have been in the unchanged region, so check again. */ 959 /* The insert may have been in the unchanged region, so check again. */
960 if (Z - GPT < END_UNCHANGED) 960 if (Z - GPT < END_UNCHANGED)
961 END_UNCHANGED = Z - GPT; 961 END_UNCHANGED = Z - GPT;
962 962
@@ -1148,7 +1148,7 @@ insert_from_buffer_1 (struct buffer *buf,
1148 1148
1149 eassert (GPT <= GPT_BYTE); 1149 eassert (GPT <= GPT_BYTE);
1150 1150
1151 /* The insert may have been in the unchanged region, so check again. */ 1151 /* The insert may have been in the unchanged region, so check again. */
1152 if (Z - GPT < END_UNCHANGED) 1152 if (Z - GPT < END_UNCHANGED)
1153 END_UNCHANGED = Z - GPT; 1153 END_UNCHANGED = Z - GPT;
1154 1154