Cleanup namespace of dos-w32.el.
[bpt/emacs.git] / src / insdel.c
CommitLineData
b45433b3 1/* Buffer insertion/deletion and gap motion for GNU Emacs.
ab422c4d
PE
2 Copyright (C) 1985-1986, 1993-1995, 1997-2013 Free Software
3 Foundation, Inc.
b45433b3
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
b45433b3 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
b45433b3
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
b45433b3
JB
19
20
18160b98 21#include <config.h>
06d6db33
PE
22
23#include <intprops.h>
24
b45433b3 25#include "lisp.h"
679194a6 26#include "intervals.h"
811f7370 27#include "character.h"
e5560ff7 28#include "buffer.h"
b45433b3 29#include "window.h"
d014bf88 30#include "blockinput.h"
dfcf069d 31#include "region-cache.h"
b45433b3 32
a08d4ba7
PE
33static void insert_from_string_1 (Lisp_Object, ptrdiff_t, ptrdiff_t, ptrdiff_t,
34 ptrdiff_t, bool, bool);
35static void insert_from_buffer_1 (struct buffer *, ptrdiff_t, ptrdiff_t, bool);
36static void gap_left (ptrdiff_t, ptrdiff_t, bool);
37static void gap_right (ptrdiff_t, ptrdiff_t);
395ec62e 38
fb2e7d14
RS
39/* List of elements of the form (BEG-UNCHANGED END-UNCHANGED CHANGE-AMOUNT)
40 describing changes which happened while combine_after_change_calls
a08d4ba7 41 was non-nil. We use this to decide how to call them
fb2e7d14
RS
42 once the deferral ends.
43
44 In each element.
45 BEG-UNCHANGED is the number of chars before the changed range.
46 END-UNCHANGED is the number of chars after the changed range,
47 and CHANGE-AMOUNT is the number of characters inserted by the change
48 (negative for a deletion). */
77382fcc 49static Lisp_Object combine_after_change_list;
fb2e7d14
RS
50
51/* Buffer which combine_after_change_list is about. */
77382fcc 52static Lisp_Object combine_after_change_buffer;
27ea0af2
GM
53
54Lisp_Object Qinhibit_modification_hooks;
4889fc82 55
d311d28c 56static void signal_before_change (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
e2688e4a
DA
57
58/* Also used in marker.c to enable expensive marker checks. */
59
60#ifdef MARKER_DEBUG
60ea6052 61
85876d07 62static void
971de7fb 63check_markers (void)
60ea6052 64{
a08d4ba7
PE
65 struct Lisp_Marker *tail;
66 bool multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
60ea6052 67
dab0b04d 68 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
60ea6052 69 {
dab0b04d 70 if (tail->buffer->text != current_buffer->text)
1088b922 71 emacs_abort ();
dab0b04d 72 if (tail->charpos > Z)
1088b922 73 emacs_abort ();
dab0b04d 74 if (tail->bytepos > Z_BYTE)
1088b922 75 emacs_abort ();
dab0b04d 76 if (multibyte && ! CHAR_HEAD_P (FETCH_BYTE (tail->bytepos)))
1088b922 77 emacs_abort ();
60ea6052
RS
78 }
79}
e2688e4a
DA
80
81#else /* not MARKER_DEBUG */
82
83#define check_markers() do { } while (0)
84
85#endif /* MARKER_DEBUG */
86
3be11131
RS
87/* Move gap to byte position BYTEPOS, which is also char position CHARPOS.
88 Note that this can quit! */
89
90void
d311d28c 91move_gap_both (ptrdiff_t charpos, ptrdiff_t bytepos)
3be11131 92{
6020559a
DA
93 eassert (charpos == BYTE_TO_CHAR (bytepos)
94 && bytepos == CHAR_TO_BYTE (charpos));
3be11131
RS
95 if (bytepos < GPT_BYTE)
96 gap_left (charpos, bytepos, 0);
97 else if (bytepos > GPT_BYTE)
98 gap_right (charpos, bytepos);
99}
100
101/* Move the gap to a position less than the current GPT.
102 BYTEPOS describes the new position as a byte position,
103 and CHARPOS is the corresponding char position.
a08d4ba7 104 If NEWGAP, then don't update beg_unchanged and end_unchanged. */
b45433b3 105
2bcaed71 106static void
a08d4ba7 107gap_left (ptrdiff_t charpos, ptrdiff_t bytepos, bool newgap)
b45433b3 108{
a08d4ba7
PE
109 unsigned char *to, *from;
110 ptrdiff_t i;
d311d28c 111 ptrdiff_t new_s1;
b45433b3 112
b45433b3 113 if (!newgap)
a50df55b 114 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
b45433b3 115
3be11131 116 i = GPT_BYTE;
b45433b3
JB
117 to = GAP_END_ADDR;
118 from = GPT_ADDR;
3be11131 119 new_s1 = GPT_BYTE;
b45433b3
JB
120
121 /* Now copy the characters. To move the gap down,
122 copy characters up. */
123
124 while (1)
125 {
126 /* I gets number of characters left to copy. */
3be11131 127 i = new_s1 - bytepos;
b45433b3
JB
128 if (i == 0)
129 break;
130 /* If a quit is requested, stop copying now.
3be11131 131 Change BYTEPOS to be where we have actually moved the gap to. */
b45433b3
JB
132 if (QUITP)
133 {
3be11131
RS
134 bytepos = new_s1;
135 charpos = BYTE_TO_CHAR (bytepos);
b45433b3
JB
136 break;
137 }
138 /* Move at most 32000 chars before checking again for a quit. */
139 if (i > 32000)
140 i = 32000;
72af86bd
AS
141 new_s1 -= i;
142 from -= i, to -= i;
143 memmove (to, from, i);
b45433b3
JB
144 }
145
f868cd8a
JB
146 /* Adjust buffer data structure, to put the gap at BYTEPOS.
147 BYTEPOS is where the loop above stopped, which may be what
148 was specified or may be where a quit was detected. */
3be11131
RS
149 GPT_BYTE = bytepos;
150 GPT = charpos;
e2688e4a 151 eassert (charpos <= bytepos);
469ff680 152 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
b45433b3
JB
153 QUIT;
154}
155
2b34df4e 156/* Move the gap to a position greater than the current GPT.
3be11131
RS
157 BYTEPOS describes the new position as a byte position,
158 and CHARPOS is the corresponding char position. */
159
2bcaed71 160static void
d311d28c 161gap_right (ptrdiff_t charpos, ptrdiff_t bytepos)
b45433b3
JB
162{
163 register unsigned char *to, *from;
d311d28c
PE
164 register ptrdiff_t i;
165 ptrdiff_t new_s1;
b45433b3 166
a50df55b 167 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
b45433b3 168
3be11131 169 i = GPT_BYTE;
b45433b3
JB
170 from = GAP_END_ADDR;
171 to = GPT_ADDR;
3be11131 172 new_s1 = GPT_BYTE;
b45433b3
JB
173
174 /* Now copy the characters. To move the gap up,
175 copy characters down. */
176
177 while (1)
178 {
179 /* I gets number of characters left to copy. */
3be11131 180 i = bytepos - new_s1;
b45433b3
JB
181 if (i == 0)
182 break;
183 /* If a quit is requested, stop copying now.
3be11131 184 Change BYTEPOS to be where we have actually moved the gap to. */
b45433b3
JB
185 if (QUITP)
186 {
3be11131
RS
187 bytepos = new_s1;
188 charpos = BYTE_TO_CHAR (bytepos);
b45433b3
JB
189 break;
190 }
191 /* Move at most 32000 chars before checking again for a quit. */
192 if (i > 32000)
193 i = 32000;
72af86bd
AS
194 new_s1 += i;
195 memmove (to, from, i);
196 from += i, to += i;
b45433b3
JB
197 }
198
3be11131
RS
199 GPT = charpos;
200 GPT_BYTE = bytepos;
e2688e4a 201 eassert (charpos <= bytepos);
469ff680 202 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
b45433b3
JB
203 QUIT;
204}
2b083808 205\f
3be11131
RS
206/* Adjust all markers for a deletion
207 whose range in bytes is FROM_BYTE to TO_BYTE.
208 The range in charpos is FROM to TO.
209
210 This function assumes that the gap is adjacent to
211 or inside of the range being deleted. */
beecb55b 212
809f3d51 213void
d311d28c
PE
214adjust_markers_for_delete (ptrdiff_t from, ptrdiff_t from_byte,
215 ptrdiff_t to, ptrdiff_t to_byte)
3be11131
RS
216{
217 Lisp_Object marker;
218 register struct Lisp_Marker *m;
d311d28c 219 register ptrdiff_t charpos;
3be11131 220
dab0b04d 221 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
3be11131 222 {
3be11131 223 charpos = m->charpos;
e2688e4a 224 eassert (charpos <= Z);
3be11131
RS
225
226 /* If the marker is after the deletion,
80f6e77c 227 relocate by number of chars / bytes deleted. */
3be11131 228 if (charpos > to)
80f6e77c
RS
229 {
230 m->charpos -= to - from;
231 m->bytepos -= to_byte - from_byte;
232 }
80f6e77c 233 /* Here's the case where a marker is inside text being deleted. */
3be11131
RS
234 else if (charpos > from)
235 {
00de2987 236 if (! m->insertion_type)
dab0b04d 237 { /* Normal markers will end up at the beginning of the
00de2987 238 re-inserted text after undoing a deletion, and must be
177c0ea7 239 adjusted to move them to the correct place. */
dab0b04d 240 XSETMISC (marker, m);
28259cac 241 record_marker_adjustment (marker, from - charpos);
dab0b04d 242 }
00de2987 243 else if (charpos < to)
dab0b04d 244 { /* Before-insertion markers will automatically move forward
00de2987
MB
245 upon re-inserting the deleted text, so we have to arrange
246 for them to move backward to the correct position. */
dab0b04d 247 XSETMISC (marker, m);
28259cac 248 record_marker_adjustment (marker, to - charpos);
dab0b04d 249 }
3be11131 250 m->charpos = from;
80f6e77c 251 m->bytepos = from_byte;
3be11131 252 }
00de2987
MB
253 /* Here's the case where a before-insertion marker is immediately
254 before the deleted region. */
255 else if (charpos == from && m->insertion_type)
256 {
257 /* Undoing the change uses normal insertion, which will
258 incorrectly make MARKER move forward, so we arrange for it
259 to then move backward to the correct place at the beginning
260 of the deleted region. */
dab0b04d 261 XSETMISC (marker, m);
00de2987
MB
262 record_marker_adjustment (marker, to - from);
263 }
3be11131
RS
264 }
265}
23b20a70 266
2b083808 267\f
432f78d2
RS
268/* Adjust markers for an insertion that stretches from FROM / FROM_BYTE
269 to TO / TO_BYTE. We have to relocate the charpos of every marker
270 that points after the insertion (but not their bytepos).
3be11131 271
3be11131
RS
272 When a marker points at the insertion point,
273 we advance it if either its insertion-type is t
274 or BEFORE_MARKERS is true. */
275
276static void
d311d28c 277adjust_markers_for_insert (ptrdiff_t from, ptrdiff_t from_byte,
a08d4ba7 278 ptrdiff_t to, ptrdiff_t to_byte, bool before_markers)
beecb55b 279{
dab0b04d 280 struct Lisp_Marker *m;
a08d4ba7 281 bool adjusted = 0;
d311d28c
PE
282 ptrdiff_t nchars = to - from;
283 ptrdiff_t nbytes = to_byte - from_byte;
beecb55b 284
dab0b04d 285 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
beecb55b 286 {
86a56ef3
SM
287 eassert (m->bytepos >= m->charpos
288 && m->bytepos - m->charpos <= Z_BYTE - Z);
1f90a790 289
432f78d2 290 if (m->bytepos == from_byte)
469ff680 291 {
432f78d2
RS
292 if (m->insertion_type || before_markers)
293 {
b16afa45
KH
294 m->bytepos = to_byte;
295 m->charpos = to;
432f78d2
RS
296 if (m->insertion_type)
297 adjusted = 1;
298 }
ce97a2d7 299 }
80f6e77c
RS
300 else if (m->bytepos > from_byte)
301 {
302 m->bytepos += nbytes;
b16afa45 303 m->charpos += nchars;
80f6e77c 304 }
beecb55b 305 }
3be11131
RS
306
307 /* Adjusting only markers whose insertion-type is t may result in
409f2919 308 - disordered start and end in overlays, and
6b61353c 309 - disordered overlays in the slot `overlays_before' of current_buffer. */
469ff680 310 if (adjusted)
6b61353c 311 {
5e617bc2 312 fix_start_end_in_overlays (from, to);
6b61353c
KH
313 fix_overlays_before (current_buffer, from, to);
314 }
beecb55b
RS
315}
316
3be11131
RS
317/* Adjust point for an insertion of NBYTES bytes, which are NCHARS characters.
318
319 This is used only when the value of point changes due to an insert
320 or delete; it does not represent a conceptual change in point as a
321 marker. In particular, point is not crossing any interval
322 boundaries, so there's no need to use the usual SET_PT macro. In
323 fact it would be incorrect to do so, because either the old or the
324 new value of point is out of sync with the current set of
325 intervals. */
326
a27a38d8 327static void
d311d28c 328adjust_point (ptrdiff_t nchars, ptrdiff_t nbytes)
a27a38d8 329{
cffc6f3b 330 SET_BUF_PT_BOTH (current_buffer, PT + nchars, PT_BYTE + nbytes);
3be11131 331 /* In a single-byte buffer, the two positions must be equal. */
86a56ef3 332 eassert (PT_BYTE >= PT && PT_BYTE - PT <= ZV_BYTE - ZV);
a27a38d8 333}
b45433b3 334\f
652838b5
KH
335/* Adjust markers for a replacement of a text at FROM (FROM_BYTE) of
336 length OLD_CHARS (OLD_BYTES) to a new text of length NEW_CHARS
adee4f91
KH
337 (NEW_BYTES). It is assumed that OLD_CHARS > 0, i.e., this is not
338 an insertion. */
652838b5
KH
339
340static void
d311d28c
PE
341adjust_markers_for_replace (ptrdiff_t from, ptrdiff_t from_byte,
342 ptrdiff_t old_chars, ptrdiff_t old_bytes,
343 ptrdiff_t new_chars, ptrdiff_t new_bytes)
652838b5 344{
dab0b04d 345 register struct Lisp_Marker *m;
d311d28c
PE
346 ptrdiff_t prev_to_byte = from_byte + old_bytes;
347 ptrdiff_t diff_chars = new_chars - old_chars;
348 ptrdiff_t diff_bytes = new_bytes - old_bytes;
652838b5 349
dab0b04d 350 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
652838b5 351 {
adee4f91 352 if (m->bytepos >= prev_to_byte)
652838b5 353 {
adee4f91
KH
354 m->charpos += diff_chars;
355 m->bytepos += diff_bytes;
652838b5 356 }
adee4f91 357 else if (m->bytepos > from_byte)
652838b5 358 {
652838b5 359 m->charpos = from;
b16afa45 360 m->bytepos = from_byte;
652838b5 361 }
652838b5 362 }
3019692c 363
e2688e4a 364 check_markers ();
652838b5
KH
365}
366
367\f
99561444
PE
368void
369buffer_overflow (void)
370{
371 error ("Maximum buffer size exceeded");
372}
373
3be11131 374/* Make the gap NBYTES_ADDED bytes longer. */
b45433b3 375
85876d07 376static void
d311d28c 377make_gap_larger (ptrdiff_t nbytes_added)
b45433b3 378{
b45433b3 379 Lisp_Object tem;
d311d28c
PE
380 ptrdiff_t real_gap_loc;
381 ptrdiff_t real_gap_loc_byte;
382 ptrdiff_t old_gap_size;
383 ptrdiff_t current_size = Z_BYTE - BEG_BYTE + GAP_SIZE;
b45433b3 384
1c8e352f
PE
385 if (BUF_BYTES_MAX - current_size < nbytes_added)
386 buffer_overflow ();
b45433b3 387
1c8e352f
PE
388 /* If we have to get more space, get enough to last a while;
389 but do not exceed the maximum buffer size. */
eefd7278 390 nbytes_added = min (nbytes_added + GAP_BYTES_DFL,
1c8e352f 391 BUF_BYTES_MAX - current_size);
94056516 392
71a7bfa7 393 enlarge_buffer_text (current_buffer, nbytes_added);
b45433b3
JB
394
395 /* Prevent quitting in move_gap. */
396 tem = Vinhibit_quit;
397 Vinhibit_quit = Qt;
398
399 real_gap_loc = GPT;
3be11131 400 real_gap_loc_byte = GPT_BYTE;
b45433b3
JB
401 old_gap_size = GAP_SIZE;
402
403 /* Call the newly allocated space a gap at the end of the whole space. */
404 GPT = Z + GAP_SIZE;
7d92db58 405 GPT_BYTE = Z_BYTE + GAP_SIZE;
3be11131 406 GAP_SIZE = nbytes_added;
b45433b3 407
2eae9ccc 408 /* Move the new gap down to be consecutive with the end of the old one. */
3be11131 409 gap_left (real_gap_loc + old_gap_size, real_gap_loc_byte + old_gap_size, 1);
b45433b3
JB
410
411 /* Now combine the two into one large gap. */
412 GAP_SIZE += old_gap_size;
413 GPT = real_gap_loc;
3be11131 414 GPT_BYTE = real_gap_loc_byte;
b45433b3 415
469ff680
KH
416 /* Put an anchor. */
417 *(Z_ADDR) = 0;
418
b45433b3
JB
419 Vinhibit_quit = tem;
420}
8af5b8e7 421
b58c5c4a 422#if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
8af5b8e7 423
7273faa1 424/* Make the gap NBYTES_REMOVED bytes shorter. */
8af5b8e7 425
85876d07 426static void
d311d28c 427make_gap_smaller (ptrdiff_t nbytes_removed)
8af5b8e7
AI
428{
429 Lisp_Object tem;
d311d28c
PE
430 ptrdiff_t real_gap_loc;
431 ptrdiff_t real_gap_loc_byte;
432 ptrdiff_t real_Z;
433 ptrdiff_t real_Z_byte;
434 ptrdiff_t real_beg_unchanged;
435 ptrdiff_t new_gap_size;
8af5b8e7 436
eefd7278
DA
437 /* Make sure the gap is at least GAP_BYTES_MIN bytes. */
438 if (GAP_SIZE - nbytes_removed < GAP_BYTES_MIN)
439 nbytes_removed = GAP_SIZE - GAP_BYTES_MIN;
8af5b8e7
AI
440
441 /* Prevent quitting in move_gap. */
442 tem = Vinhibit_quit;
443 Vinhibit_quit = Qt;
444
445 real_gap_loc = GPT;
446 real_gap_loc_byte = GPT_BYTE;
73df3b72 447 new_gap_size = GAP_SIZE - nbytes_removed;
8af5b8e7
AI
448 real_Z = Z;
449 real_Z_byte = Z_BYTE;
73df3b72 450 real_beg_unchanged = BEG_UNCHANGED;
8af5b8e7
AI
451
452 /* Pretend that the last unwanted part of the gap is the entire gap,
453 and that the first desired part of the gap is part of the buffer
454 text. */
72af86bd 455 memset (GPT_ADDR, 0, new_gap_size);
73df3b72
KS
456 GPT += new_gap_size;
457 GPT_BYTE += new_gap_size;
458 Z += new_gap_size;
459 Z_BYTE += new_gap_size;
8af5b8e7
AI
460 GAP_SIZE = nbytes_removed;
461
2eae9ccc 462 /* Move the unwanted pretend gap to the end of the buffer. */
8af5b8e7
AI
463 gap_right (Z, Z_BYTE);
464
465 enlarge_buffer_text (current_buffer, -nbytes_removed);
466
467 /* Now restore the desired gap. */
73df3b72 468 GAP_SIZE = new_gap_size;
8af5b8e7
AI
469 GPT = real_gap_loc;
470 GPT_BYTE = real_gap_loc_byte;
471 Z = real_Z;
472 Z_BYTE = real_Z_byte;
73df3b72 473 BEG_UNCHANGED = real_beg_unchanged;
8af5b8e7
AI
474
475 /* Put an anchor. */
476 *(Z_ADDR) = 0;
477
478 Vinhibit_quit = tem;
479}
480
b58c5c4a
PE
481#endif /* USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC */
482
8af5b8e7 483void
d311d28c 484make_gap (ptrdiff_t nbytes_added)
8af5b8e7
AI
485{
486 if (nbytes_added >= 0)
487 make_gap_larger (nbytes_added);
d77fbc16 488#if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
8af5b8e7
AI
489 else
490 make_gap_smaller (-nbytes_added);
491#endif
492}
eefd7278
DA
493
494/* Add NBYTES to B's gap. It's enough to temporarily
495 fake current_buffer and avoid real switch to B. */
496
497void
498make_gap_1 (struct buffer *b, ptrdiff_t nbytes)
499{
500 struct buffer *oldb = current_buffer;
501
502 current_buffer = b;
503 make_gap (nbytes);
504 current_buffer = oldb;
505}
506
2b083808
RS
507/* Copy NBYTES bytes of text from FROM_ADDR to TO_ADDR.
508 FROM_MULTIBYTE says whether the incoming text is multibyte.
509 TO_MULTIBYTE says whether to store the text as multibyte.
510 If FROM_MULTIBYTE != TO_MULTIBYTE, we convert.
511
512 Return the number of bytes stored at TO_ADDR. */
513
d311d28c 514ptrdiff_t
ae19ba7c 515copy_text (const unsigned char *from_addr, unsigned char *to_addr,
a08d4ba7 516 ptrdiff_t nbytes, bool from_multibyte, bool to_multibyte)
2b083808
RS
517{
518 if (from_multibyte == to_multibyte)
519 {
72af86bd 520 memcpy (to_addr, from_addr, nbytes);
2b083808
RS
521 return nbytes;
522 }
523 else if (from_multibyte)
524 {
d311d28c
PE
525 ptrdiff_t nchars = 0;
526 ptrdiff_t bytes_left = nbytes;
f44cbcd8 527
2b083808
RS
528 while (bytes_left > 0)
529 {
b16afa45 530 int thislen, c;
62a6e103 531 c = STRING_CHAR_AND_LENGTH (from_addr, thislen);
1ede3eb6
KH
532 if (! ASCII_CHAR_P (c))
533 c &= 0xFF;
f44cbcd8 534 *to_addr++ = c;
2b083808 535 from_addr += thislen;
7e79b8e0 536 bytes_left -= thislen;
2b083808
RS
537 nchars++;
538 }
539 return nchars;
540 }
541 else
542 {
543 unsigned char *initial_to_addr = to_addr;
544
545 /* Convert single-byte to multibyte. */
546 while (nbytes > 0)
547 {
548 int c = *from_addr++;
2b083808 549
4c0354d7 550 if (!ASCII_CHAR_P (c))
2b083808 551 {
4c0354d7 552 c = BYTE8_TO_CHAR (c);
0ef71121 553 to_addr += CHAR_STRING (c, to_addr);
2b083808
RS
554 nbytes--;
555 }
556 else
557 /* Special case for speed. */
558 *to_addr++ = c, nbytes--;
559 }
560 return to_addr - initial_to_addr;
561 }
562}
2b083808 563\f
b45433b3 564/* Insert a string of specified length before point.
2b083808
RS
565 This function judges multibyteness based on
566 enable_multibyte_characters in the current buffer;
567 it never converts between single-byte and multibyte.
568
ef29f213
KH
569 DO NOT use this for the contents of a Lisp string or a Lisp buffer!
570 prepare_to_modify_buffer could relocate the text. */
b45433b3 571
c660b094 572void
d311d28c 573insert (const char *string, ptrdiff_t nbytes)
b45433b3 574{
3be11131 575 if (nbytes > 0)
395ec62e 576 {
d311d28c 577 ptrdiff_t len = chars_in_text ((unsigned char *) string, nbytes), opoint;
bab3eee1
EZ
578 insert_1_both (string, len, nbytes, 0, 1, 0);
579 opoint = PT - len;
580 signal_after_change (opoint, 0, len);
0ef71121 581 update_compositions (opoint, PT, CHECK_BORDER);
cd11ef31
RS
582 }
583}
584
2b083808
RS
585/* Likewise, but inherit text properties from neighboring characters. */
586
c660b094 587void
d311d28c 588insert_and_inherit (const char *string, ptrdiff_t nbytes)
cd11ef31 589{
3be11131 590 if (nbytes > 0)
cd11ef31 591 {
d311d28c 592 ptrdiff_t len = chars_in_text ((unsigned char *) string, nbytes), opoint;
bab3eee1
EZ
593 insert_1_both (string, len, nbytes, 1, 1, 0);
594 opoint = PT - len;
595 signal_after_change (opoint, 0, len);
0ef71121 596 update_compositions (opoint, PT, CHECK_BORDER);
395ec62e
KH
597 }
598}
b45433b3 599
2b083808 600/* Insert the character C before point. Do not inherit text properties. */
3be11131 601
c660b094 602void
ae19ba7c 603insert_char (int c)
3be11131 604{
0ef71121 605 unsigned char str[MAX_MULTIBYTE_LENGTH];
2b083808
RS
606 int len;
607
4b4deea2 608 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
0ef71121 609 len = CHAR_STRING (c, str);
2b083808
RS
610 else
611 {
612 len = 1;
0ef71121 613 str[0] = c;
2b083808 614 }
3be11131 615
b68864e5 616 insert ((char *) str, len);
3be11131
RS
617}
618
2b083808 619/* Insert the null-terminated string S before point. */
3be11131
RS
620
621void
ae19ba7c 622insert_string (const char *s)
3be11131
RS
623{
624 insert (s, strlen (s));
625}
626
627/* Like `insert' except that all markers pointing at the place where
628 the insertion happens are adjusted to point after it.
629 Don't use this function to insert part of a Lisp string,
630 since gc could happen and relocate it. */
631
632void
d311d28c 633insert_before_markers (const char *string, ptrdiff_t nbytes)
3be11131
RS
634{
635 if (nbytes > 0)
636 {
d311d28c 637 ptrdiff_t len = chars_in_text ((unsigned char *) string, nbytes), opoint;
bab3eee1
EZ
638 insert_1_both (string, len, nbytes, 0, 1, 1);
639 opoint = PT - len;
640 signal_after_change (opoint, 0, len);
0ef71121 641 update_compositions (opoint, PT, CHECK_BORDER);
3be11131
RS
642 }
643}
644
2b083808
RS
645/* Likewise, but inherit text properties from neighboring characters. */
646
3be11131 647void
b68864e5 648insert_before_markers_and_inherit (const char *string,
d311d28c 649 ptrdiff_t nbytes)
3be11131
RS
650{
651 if (nbytes > 0)
652 {
d311d28c 653 ptrdiff_t len = chars_in_text ((unsigned char *) string, nbytes), opoint;
bab3eee1
EZ
654 insert_1_both (string, len, nbytes, 1, 1, 1);
655 opoint = PT - len;
656 signal_after_change (opoint, 0, len);
0ef71121 657 update_compositions (opoint, PT, CHECK_BORDER);
3be11131
RS
658 }
659}
1f90a790 660
b16afa45
KH
661#ifdef BYTE_COMBINING_DEBUG
662
432f78d2
RS
663/* See if the bytes before POS/POS_BYTE combine with bytes
664 at the start of STRING to form a single character.
ce97a2d7 665 If so, return the number of bytes at the start of STRING
432f78d2 666 which combine in this way. Otherwise, return 0. */
b45433b3 667
432f78d2 668int
d311d28c
PE
669count_combining_before (const unsigned char *string, ptrdiff_t length,
670 ptrdiff_t pos, ptrdiff_t pos_byte)
432f78d2 671{
cae184f2 672 int len, combining_bytes;
641a26d2 673 const unsigned char *p;
b45433b3 674
432f78d2
RS
675 if (NILP (current_buffer->enable_multibyte_characters))
676 return 0;
cae184f2
KH
677
678 /* At first, we can exclude the following cases:
679 (1) STRING[0] can't be a following byte of multibyte sequence.
680 (2) POS is the start of the current buffer.
681 (3) A character before POS is not a multibyte character. */
682 if (length == 0 || CHAR_HEAD_P (*string)) /* case (1) */
432f78d2 683 return 0;
cae184f2 684 if (pos_byte == BEG_BYTE) /* case (2) */
432f78d2 685 return 0;
cae184f2
KH
686 len = 1;
687 p = BYTE_POS_ADDR (pos_byte - 1);
688 while (! CHAR_HEAD_P (*p)) p--, len++;
409f2919 689 if (! LEADING_CODE_P (*p)) /* case (3) */
432f78d2 690 return 0;
cae184f2 691
cae184f2
KH
692 combining_bytes = BYTES_BY_CHAR_HEAD (*p) - len;
693 if (combining_bytes <= 0)
694 /* The character preceding POS is, complete and no room for
695 combining bytes (combining_bytes == 0), or an independent 8-bit
696 character (combining_bytes < 0). */
432f78d2 697 return 0;
ce97a2d7 698
cae184f2
KH
699 /* We have a combination situation. Count the bytes at STRING that
700 may combine. */
701 p = string + 1;
ce97a2d7
RS
702 while (!CHAR_HEAD_P (*p) && p < string + length)
703 p++;
704
cae184f2 705 return (combining_bytes < p - string ? combining_bytes : p - string);
432f78d2 706}
b45433b3 707
432f78d2
RS
708/* See if the bytes after POS/POS_BYTE combine with bytes
709 at the end of STRING to form a single character.
710 If so, return the number of bytes after POS/POS_BYTE
711 which combine in this way. Otherwise, return 0. */
679194a6 712
432f78d2 713int
ae19ba7c 714count_combining_after (const unsigned char *string,
d311d28c 715 ptrdiff_t length, ptrdiff_t pos, ptrdiff_t pos_byte)
432f78d2 716{
d311d28c
PE
717 ptrdiff_t opos_byte = pos_byte;
718 ptrdiff_t i;
719 ptrdiff_t bytes;
cae184f2 720 unsigned char *bufp;
3be11131 721
432f78d2
RS
722 if (NILP (current_buffer->enable_multibyte_characters))
723 return 0;
cae184f2
KH
724
725 /* At first, we can exclude the following cases:
726 (1) The last byte of STRING is an ASCII.
727 (2) POS is the last of the current buffer.
728 (3) A character at POS can't be a following byte of multibyte
729 character. */
730 if (length > 0 && ASCII_BYTE_P (string[length - 1])) /* case (1) */
731 return 0;
732 if (pos_byte == Z_BYTE) /* case (2) */
432f78d2 733 return 0;
cae184f2
KH
734 bufp = BYTE_POS_ADDR (pos_byte);
735 if (CHAR_HEAD_P (*bufp)) /* case (3) */
736 return 0;
737
432f78d2 738 i = length - 1;
b57a7b0b 739 while (i >= 0 && ! CHAR_HEAD_P (string[i]))
432f78d2
RS
740 {
741 i--;
742 }
b57a7b0b
KH
743 if (i < 0)
744 {
cae184f2
KH
745 /* All characters in STRING are not character head. We must
746 check also preceding bytes at POS. We are sure that the gap
747 is at POS. */
748 unsigned char *p = BEG_ADDR;
b57a7b0b 749 i = pos_byte - 2;
cae184f2 750 while (i >= 0 && ! CHAR_HEAD_P (p[i]))
b57a7b0b 751 i--;
409f2919 752 if (i < 0 || !LEADING_CODE_P (p[i]))
b57a7b0b 753 return 0;
0ef71121 754
cae184f2
KH
755 bytes = BYTES_BY_CHAR_HEAD (p[i]);
756 return (bytes <= pos_byte - 1 - i + length
757 ? 0
758 : bytes - (pos_byte - 1 - i + length));
b57a7b0b 759 }
409f2919 760 if (!LEADING_CODE_P (string[i]))
432f78d2
RS
761 return 0;
762
cae184f2
KH
763 bytes = BYTES_BY_CHAR_HEAD (string[i]) - (length - i);
764 bufp++, pos_byte++;
765 while (!CHAR_HEAD_P (*bufp)) bufp++, pos_byte++;
cd11ef31 766
cae184f2 767 return (bytes <= pos_byte - opos_byte ? bytes : pos_byte - opos_byte);
b45433b3 768}
2b083808 769
b16afa45 770#endif
9f3ede3c 771
1f90a790 772\f
2b083808 773/* Insert a sequence of NCHARS chars which occupy NBYTES bytes
04d360e7
EZ
774 starting at STRING. INHERIT non-zero means inherit the text
775 properties from neighboring characters; zero means inserted text
776 will have no text properties. PREPARE non-zero means call
777 prepare_to_modify_buffer, which checks that the region is not
778 read-only, and calls before-change-function and any modification
779 properties the text may have. BEFORE_MARKERS non-zero means adjust
780 all markers that point at the insertion place to point after it. */
2b083808
RS
781
782void
b68864e5 783insert_1_both (const char *string,
d311d28c 784 ptrdiff_t nchars, ptrdiff_t nbytes,
a08d4ba7 785 bool inherit, bool prepare, bool before_markers)
2b083808 786{
da80a8d5
GM
787 if (nchars == 0)
788 return;
177c0ea7 789
4b4deea2 790 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
57404188
KH
791 nchars = nbytes;
792
35d63725
RS
793 if (prepare)
794 /* Do this before moving and increasing the gap,
795 because the before-change hooks might move the gap
796 or make it smaller. */
797 prepare_to_modify_buffer (PT, PT, NULL);
798
2b083808
RS
799 if (PT != GPT)
800 move_gap_both (PT, PT_BYTE);
801 if (GAP_SIZE < nbytes)
802 make_gap (nbytes - GAP_SIZE);
803
b16afa45
KH
804#ifdef BYTE_COMBINING_DEBUG
805 if (count_combining_before (string, nbytes, PT, PT_BYTE)
806 || count_combining_after (string, nbytes, PT, PT_BYTE))
1088b922 807 emacs_abort ();
b16afa45 808#endif
432f78d2
RS
809
810 /* Record deletion of the surrounding text that combines with
811 the insertion. This, together with recording the insertion,
b16afa45
KH
812 will add up to the right stuff in the undo list. */
813 record_insert (PT, nchars);
2b083808 814 MODIFF++;
3e145152 815 CHARS_MODIFF = MODIFF;
2b083808 816
72af86bd 817 memcpy (GPT_ADDR, string, nbytes);
2b083808 818
2b083808 819 GAP_SIZE -= nbytes;
1f90a790
RS
820 GPT += nchars;
821 ZV += nchars;
822 Z += nchars;
2b083808
RS
823 GPT_BYTE += nbytes;
824 ZV_BYTE += nbytes;
825 Z_BYTE += nbytes;
826 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1f90a790 827
e2688e4a 828 eassert (GPT <= GPT_BYTE);
1f90a790 829
ae4002ce 830 /* The insert may have been in the unchanged region, so check again. */
9dde4e0c
KS
831 if (Z - GPT < END_UNCHANGED)
832 END_UNCHANGED = Z - GPT;
833
1f90a790 834 adjust_overlays_for_insert (PT, nchars);
432f78d2 835 adjust_markers_for_insert (PT, PT_BYTE,
1f90a790 836 PT + nchars, PT_BYTE + nbytes,
2b083808 837 before_markers);
ce97a2d7 838
2f294edf 839 offset_intervals (current_buffer, PT, nchars);
1f90a790 840
0c94c8d6 841 if (!inherit && buffer_intervals (current_buffer))
f2cab2ea
GM
842 set_text_properties (make_number (PT), make_number (PT + nchars),
843 Qnil, Qnil, Qnil);
ce97a2d7 844
b16afa45 845 adjust_point (nchars, nbytes);
828f1ed3 846
e2688e4a 847 check_markers ();
2b083808 848}
3be11131 849\f
679194a6 850/* Insert the part of the text of STRING, a Lisp object assumed to be
2b083808
RS
851 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
852 starting at position POS / POS_BYTE. If the text of STRING has properties,
853 copy them into the buffer.
679194a6
JA
854
855 It does not work to use `insert' for this, because a GC could happen
72af86bd 856 before we copy the stuff into the buffer, and relocate the string
7e1ea612 857 without insert noticing. */
679194a6 858
c660b094 859void
d311d28c 860insert_from_string (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
a08d4ba7 861 ptrdiff_t length, ptrdiff_t length_byte, bool inherit)
395ec62e 862{
d311d28c 863 ptrdiff_t opoint = PT;
d8bf4256
RS
864
865 if (SCHARS (string) == 0)
866 return;
867
62b82678
RS
868 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
869 inherit, 0);
870 signal_after_change (opoint, 0, PT - opoint);
0ef71121 871 update_compositions (opoint, PT, CHECK_BORDER);
395ec62e
KH
872}
873
2b083808
RS
874/* Like `insert_from_string' except that all markers pointing
875 at the place where the insertion happens are adjusted to point after it. */
3be11131
RS
876
877void
ae19ba7c 878insert_from_string_before_markers (Lisp_Object string,
d311d28c
PE
879 ptrdiff_t pos, ptrdiff_t pos_byte,
880 ptrdiff_t length, ptrdiff_t length_byte,
a08d4ba7 881 bool inherit)
3be11131 882{
d311d28c 883 ptrdiff_t opoint = PT;
d8bf4256
RS
884
885 if (SCHARS (string) == 0)
886 return;
887
62b82678
RS
888 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
889 inherit, 1);
890 signal_after_change (opoint, 0, PT - opoint);
0ef71121 891 update_compositions (opoint, PT, CHECK_BORDER);
3be11131
RS
892}
893
894/* Subroutine of the insertion functions above. */
895
896static void
d311d28c
PE
897insert_from_string_1 (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
898 ptrdiff_t nchars, ptrdiff_t nbytes,
a08d4ba7 899 bool inherit, bool before_markers)
b45433b3 900{
b45433b3 901 struct gcpro gcpro1;
d311d28c 902 ptrdiff_t outgoing_nbytes = nbytes;
ce97a2d7 903 INTERVAL intervals;
2b083808
RS
904
905 /* Make OUTGOING_NBYTES describe the text
906 as it will be inserted in this buffer. */
907
4b4deea2 908 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
2b083808 909 outgoing_nbytes = nchars;
2a1d8be0 910 else if (! STRING_MULTIBYTE (string))
2b083808 911 outgoing_nbytes
f7e233a8 912 = count_size_as_multibyte (SDATA (string) + pos_byte,
2b083808 913 nbytes);
b45433b3 914
b45433b3 915 GCPRO1 (string);
35d63725
RS
916 /* Do this before moving and increasing the gap,
917 because the before-change hooks might move the gap
918 or make it smaller. */
d206af14 919 prepare_to_modify_buffer (PT, PT, NULL);
b45433b3 920
2bcaed71 921 if (PT != GPT)
3be11131 922 move_gap_both (PT, PT_BYTE);
534b9840 923 if (GAP_SIZE < outgoing_nbytes)
2b083808 924 make_gap (outgoing_nbytes - GAP_SIZE);
b45433b3
JB
925 UNGCPRO;
926
2b083808
RS
927 /* Copy the string text into the buffer, perhaps converting
928 between single-byte and multibyte. */
d5db4077 929 copy_text (SDATA (string) + pos_byte, GPT_ADDR, nbytes,
2a1d8be0 930 STRING_MULTIBYTE (string),
4b4deea2 931 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
b45433b3 932
b16afa45 933#ifdef BYTE_COMBINING_DEBUG
432f78d2
RS
934 /* We have copied text into the gap, but we have not altered
935 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
936 to these functions and get the same results as we would
937 have got earlier on. Meanwhile, PT_ADDR does point to
938 the text that has been stored by copy_text. */
b16afa45
KH
939 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
940 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1088b922 941 emacs_abort ();
b16afa45 942#endif
432f78d2 943
b16afa45 944 record_insert (PT, nchars);
432f78d2 945 MODIFF++;
3e145152 946 CHARS_MODIFF = MODIFF;
432f78d2 947
7792090e 948 GAP_SIZE -= outgoing_nbytes;
1f90a790
RS
949 GPT += nchars;
950 ZV += nchars;
951 Z += nchars;
2b083808
RS
952 GPT_BYTE += outgoing_nbytes;
953 ZV_BYTE += outgoing_nbytes;
954 Z_BYTE += outgoing_nbytes;
469ff680 955 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
3be11131 956
e2688e4a 957 eassert (GPT <= GPT_BYTE);
679194a6 958
ae4002ce 959 /* The insert may have been in the unchanged region, so check again. */
9dde4e0c
KS
960 if (Z - GPT < END_UNCHANGED)
961 END_UNCHANGED = Z - GPT;
962
1f90a790
RS
963 adjust_overlays_for_insert (PT, nchars);
964 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
965 PT_BYTE + outgoing_nbytes,
1f90a790 966 before_markers);
ce97a2d7 967
1f90a790
RS
968 offset_intervals (current_buffer, PT, nchars);
969
0c94c8d6 970 intervals = string_intervals (string);
b16afa45 971 /* Get the intervals for the part of the string we are inserting. */
d5db4077 972 if (nbytes < SBYTES (string))
1f90a790 973 intervals = copy_intervals (intervals, pos, nchars);
177c0ea7 974
ce97a2d7 975 /* Insert those intervals. */
1f90a790 976 graft_intervals_into_buffer (intervals, PT, nchars,
9391e591 977 current_buffer, inherit);
ce97a2d7 978
b16afa45 979 adjust_point (nchars, outgoing_nbytes);
8f924df7 980
e2688e4a 981 check_markers ();
8f924df7
KH
982}
983\f
984/* Insert a sequence of NCHARS chars which occupy NBYTES bytes
8a44e6d1
KH
985 starting at GAP_END_ADDR - NBYTES (if text_at_gap_tail) and at
986 GPT_ADDR (if not text_at_gap_tail). */
8f924df7
KH
987
988void
8a44e6d1 989insert_from_gap (ptrdiff_t nchars, ptrdiff_t nbytes, bool text_at_gap_tail)
8f924df7 990{
bd74250f 991 ptrdiff_t ins_charpos = GPT, ins_bytepos = GPT_BYTE;
8bc369d4 992
4b4deea2 993 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
8f924df7
KH
994 nchars = nbytes;
995
996 record_insert (GPT, nchars);
997 MODIFF++;
998
999 GAP_SIZE -= nbytes;
8a44e6d1
KH
1000 if (! text_at_gap_tail)
1001 {
1002 GPT += nchars;
1003 GPT_BYTE += nbytes;
1004 }
8f924df7
KH
1005 ZV += nchars;
1006 Z += nchars;
8f924df7
KH
1007 ZV_BYTE += nbytes;
1008 Z_BYTE += nbytes;
1009 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1010
e2688e4a 1011 eassert (GPT <= GPT_BYTE);
8f924df7 1012
8bc369d4
KH
1013 adjust_overlays_for_insert (ins_charpos, nchars);
1014 adjust_markers_for_insert (ins_charpos, ins_bytepos,
1015 ins_charpos + nchars, ins_bytepos + nbytes, 0);
8f924df7 1016
0c94c8d6 1017 if (buffer_intervals (current_buffer))
c669988b 1018 {
8bc369d4
KH
1019 offset_intervals (current_buffer, ins_charpos, nchars);
1020 graft_intervals_into_buffer (NULL, ins_charpos, nchars,
c669988b
KH
1021 current_buffer, 0);
1022 }
8f924df7 1023
8bc369d4 1024 if (ins_charpos < PT)
8f924df7
KH
1025 adjust_point (nchars, nbytes);
1026
e2688e4a 1027 check_markers ();
b45433b3 1028}
3be11131
RS
1029\f
1030/* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
ef29f213
KH
1031 current buffer. If the text in BUF has properties, they are absorbed
1032 into the current buffer.
1033
1034 It does not work to use `insert' for this, because a malloc could happen
72af86bd 1035 and relocate BUF's text before the copy happens. */
ef29f213
KH
1036
1037void
ae19ba7c 1038insert_from_buffer (struct buffer *buf,
a08d4ba7 1039 ptrdiff_t charpos, ptrdiff_t nchars, bool inherit)
ef29f213 1040{
d311d28c 1041 ptrdiff_t opoint = PT;
3be11131 1042
62b82678
RS
1043 insert_from_buffer_1 (buf, charpos, nchars, inherit);
1044 signal_after_change (opoint, 0, PT - opoint);
0ef71121 1045 update_compositions (opoint, PT, CHECK_BORDER);
ef29f213
KH
1046}
1047
1048static void
ae19ba7c 1049insert_from_buffer_1 (struct buffer *buf,
a08d4ba7 1050 ptrdiff_t from, ptrdiff_t nchars, bool inherit)
ef29f213 1051{
d311d28c
PE
1052 ptrdiff_t chunk, chunk_expanded;
1053 ptrdiff_t from_byte = buf_charpos_to_bytepos (buf, from);
1054 ptrdiff_t to_byte = buf_charpos_to_bytepos (buf, from + nchars);
1055 ptrdiff_t incoming_nbytes = to_byte - from_byte;
1056 ptrdiff_t outgoing_nbytes = incoming_nbytes;
ce97a2d7 1057 INTERVAL intervals;
2b083808 1058
71b28baa
SM
1059 if (nchars == 0)
1060 return;
1061
2b083808
RS
1062 /* Make OUTGOING_NBYTES describe the text
1063 as it will be inserted in this buffer. */
1064
4b4deea2 1065 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
2b083808 1066 outgoing_nbytes = nchars;
4b4deea2 1067 else if (NILP (BVAR (buf, enable_multibyte_characters)))
4468c4f1 1068 {
d311d28c
PE
1069 ptrdiff_t outgoing_before_gap = 0;
1070 ptrdiff_t outgoing_after_gap = 0;
ef29f213 1071
4468c4f1
KH
1072 if (from < BUF_GPT (buf))
1073 {
1074 chunk = BUF_GPT_BYTE (buf) - from_byte;
1075 if (chunk > incoming_nbytes)
1076 chunk = incoming_nbytes;
1077 outgoing_before_gap
1078 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf, from_byte),
1079 chunk);
1080 }
1081 else
1082 chunk = 0;
1083
1084 if (chunk < incoming_nbytes)
1085 outgoing_after_gap
177c0ea7 1086 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf,
4468c4f1
KH
1087 from_byte + chunk),
1088 incoming_nbytes - chunk);
1089
1090 outgoing_nbytes = outgoing_before_gap + outgoing_after_gap;
1091 }
177c0ea7 1092
35d63725
RS
1093 /* Do this before moving and increasing the gap,
1094 because the before-change hooks might move the gap
1095 or make it smaller. */
d206af14 1096 prepare_to_modify_buffer (PT, PT, NULL);
ef29f213
KH
1097
1098 if (PT != GPT)
3be11131 1099 move_gap_both (PT, PT_BYTE);
2b083808
RS
1100 if (GAP_SIZE < outgoing_nbytes)
1101 make_gap (outgoing_nbytes - GAP_SIZE);
ef29f213 1102
3be11131 1103 if (from < BUF_GPT (buf))
ef29f213 1104 {
3be11131 1105 chunk = BUF_GPT_BYTE (buf) - from_byte;
2b083808
RS
1106 if (chunk > incoming_nbytes)
1107 chunk = incoming_nbytes;
4468c4f1
KH
1108 /* Record number of output bytes, so we know where
1109 to put the output from the second copy_text. */
1110 chunk_expanded
1111 = copy_text (BUF_BYTE_ADDRESS (buf, from_byte),
1112 GPT_ADDR, chunk,
4b4deea2
TT
1113 ! NILP (BVAR (buf, enable_multibyte_characters)),
1114 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
ef29f213
KH
1115 }
1116 else
4468c4f1
KH
1117 chunk_expanded = chunk = 0;
1118
2b083808
RS
1119 if (chunk < incoming_nbytes)
1120 copy_text (BUF_BYTE_ADDRESS (buf, from_byte + chunk),
4468c4f1 1121 GPT_ADDR + chunk_expanded, incoming_nbytes - chunk,
4b4deea2
TT
1122 ! NILP (BVAR (buf, enable_multibyte_characters)),
1123 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
ef29f213 1124
b16afa45 1125#ifdef BYTE_COMBINING_DEBUG
432f78d2
RS
1126 /* We have copied text into the gap, but we have not altered
1127 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1128 to these functions and get the same results as we would
1f90a790 1129 have got earlier on. Meanwhile, GPT_ADDR does point to
432f78d2 1130 the text that has been stored by copy_text. */
b16afa45
KH
1131 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1132 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1088b922 1133 emacs_abort ();
b16afa45 1134#endif
432f78d2 1135
b16afa45 1136 record_insert (PT, nchars);
432f78d2 1137 MODIFF++;
3e145152 1138 CHARS_MODIFF = MODIFF;
432f78d2 1139
2b083808 1140 GAP_SIZE -= outgoing_nbytes;
1f90a790
RS
1141 GPT += nchars;
1142 ZV += nchars;
1143 Z += nchars;
2b083808
RS
1144 GPT_BYTE += outgoing_nbytes;
1145 ZV_BYTE += outgoing_nbytes;
1146 Z_BYTE += outgoing_nbytes;
469ff680 1147 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1f90a790 1148
e2688e4a 1149 eassert (GPT <= GPT_BYTE);
1f90a790 1150
ae4002ce 1151 /* The insert may have been in the unchanged region, so check again. */
9dde4e0c
KS
1152 if (Z - GPT < END_UNCHANGED)
1153 END_UNCHANGED = Z - GPT;
1154
1f90a790
RS
1155 adjust_overlays_for_insert (PT, nchars);
1156 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
432f78d2 1157 PT_BYTE + outgoing_nbytes,
b16afa45 1158 0);
ce97a2d7 1159
2f294edf 1160 offset_intervals (current_buffer, PT, nchars);
ce97a2d7 1161
b16afa45 1162 /* Get the intervals for the part of the string we are inserting. */
0c94c8d6 1163 intervals = buffer_intervals (buf);
f1a6b216 1164 if (nchars < BUF_Z (buf) - BUF_BEG (buf))
06d8227a
GM
1165 {
1166 if (buf == current_buffer && PT <= from)
1167 from += nchars;
1168 intervals = copy_intervals (intervals, from, nchars);
1169 }
177c0ea7 1170
ce97a2d7 1171 /* Insert those intervals. */
1f90a790 1172 graft_intervals_into_buffer (intervals, PT, nchars, current_buffer, inherit);
ce97a2d7 1173
b16afa45 1174 adjust_point (nchars, outgoing_nbytes);
b45433b3
JB
1175}
1176\f
652838b5
KH
1177/* Record undo information and adjust markers and position keepers for
1178 a replacement of a text PREV_TEXT at FROM to a new text of LEN
8a44e6d1
KH
1179 chars (LEN_BYTE bytes) which resides in the gap just after
1180 GPT_ADDR.
652838b5
KH
1181
1182 PREV_TEXT nil means the new text was just inserted. */
2d9eea44 1183
8a44e6d1 1184static void
d311d28c 1185adjust_after_replace (ptrdiff_t from, ptrdiff_t from_byte,
8a44e6d1 1186 Lisp_Object prev_text, ptrdiff_t len, ptrdiff_t len_byte)
1e9c7b7d 1187{
d311d28c 1188 ptrdiff_t nchars_del = 0, nbytes_del = 0;
61415a25 1189
b16afa45
KH
1190#ifdef BYTE_COMBINING_DEBUG
1191 if (count_combining_before (GPT_ADDR, len_byte, from, from_byte)
1192 || count_combining_after (GPT_ADDR, len_byte, from, from_byte))
1088b922 1193 emacs_abort ();
b16afa45
KH
1194#endif
1195
828f1ed3
KH
1196 if (STRINGP (prev_text))
1197 {
d5db4077
KR
1198 nchars_del = SCHARS (prev_text);
1199 nbytes_del = SBYTES (prev_text);
828f1ed3
KH
1200 }
1201
61415a25
KH
1202 /* Update various buffer positions for the new text. */
1203 GAP_SIZE -= len_byte;
1204 ZV += len; Z+= len;
1205 ZV_BYTE += len_byte; Z_BYTE += len_byte;
8a44e6d1
KH
1206 GPT += len; GPT_BYTE += len_byte;
1207 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
61415a25 1208
adee4f91
KH
1209 if (nchars_del > 0)
1210 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1211 len, len_byte);
1212 else
1213 adjust_markers_for_insert (from, from_byte,
1214 from + len, from_byte + len_byte, 0);
b16afa45 1215
af1f7e06
DA
1216 if (nchars_del > 0)
1217 record_delete (from, prev_text);
1218 record_insert (from, len);
652838b5
KH
1219
1220 if (len > nchars_del)
1221 adjust_overlays_for_insert (from, len - nchars_del);
1222 else if (len < nchars_del)
1223 adjust_overlays_for_delete (from, nchars_del - len);
8707c1e5 1224
2f294edf 1225 offset_intervals (current_buffer, from, len - nchars_del);
61415a25 1226
b16afa45
KH
1227 if (from < PT)
1228 adjust_point (len - nchars_del, len_byte - nbytes_del);
61415a25 1229
9f3ede3c 1230 /* As byte combining will decrease Z, we must check this again. */
a50df55b
GM
1231 if (Z - GPT < END_UNCHANGED)
1232 END_UNCHANGED = Z - GPT;
9f3ede3c 1233
e2688e4a 1234 check_markers ();
60ea6052 1235
1e9c7b7d 1236 if (len == 0)
b58e3ca1
RS
1237 evaporate_overlays (from);
1238 MODIFF++;
3e145152 1239 CHARS_MODIFF = MODIFF;
b58e3ca1
RS
1240}
1241
652838b5
KH
1242/* Record undo information, adjust markers and position keepers for an
1243 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1244 text already exists in the current buffer but character length (TO
1245 - FROM) may be incorrect, the correct length is NEWLEN. */
1246
1247void
d311d28c
PE
1248adjust_after_insert (ptrdiff_t from, ptrdiff_t from_byte,
1249 ptrdiff_t to, ptrdiff_t to_byte, ptrdiff_t newlen)
652838b5 1250{
d311d28c 1251 ptrdiff_t len = to - from, len_byte = to_byte - from_byte;
652838b5
KH
1252
1253 if (GPT != to)
1254 move_gap_both (to, to_byte);
1255 GAP_SIZE += len_byte;
1256 GPT -= len; GPT_BYTE -= len_byte;
1257 ZV -= len; ZV_BYTE -= len_byte;
1258 Z -= len; Z_BYTE -= len_byte;
8a44e6d1 1259 adjust_after_replace (from, from_byte, Qnil, newlen, len_byte);
652838b5 1260}
085db7de 1261\f
3be11131 1262/* Replace the text from character positions FROM to TO with NEW,
a08d4ba7 1263 If PREPARE, call prepare_to_modify_buffer.
c5ca4d3a
RS
1264 If INHERIT, the newly inserted text should inherit text properties
1265 from the surrounding non-deleted text. */
1266
1267/* Note that this does not yet handle markers quite right.
1268 Also it needs to record a single undo-entry that does a replacement
1269 rather than a separate delete and insert.
60aa777a
RS
1270 That way, undo will also handle markers properly.
1271
1272 But if MARKERS is 0, don't relocate markers. */
c5ca4d3a
RS
1273
1274void
d311d28c 1275replace_range (ptrdiff_t from, ptrdiff_t to, Lisp_Object new,
a08d4ba7 1276 bool prepare, bool inherit, bool markers)
c5ca4d3a 1277{
d311d28c
PE
1278 ptrdiff_t inschars = SCHARS (new);
1279 ptrdiff_t insbytes = SBYTES (new);
1280 ptrdiff_t from_byte, to_byte;
1281 ptrdiff_t nbytes_del, nchars_del;
c5ca4d3a 1282 struct gcpro gcpro1;
ce97a2d7 1283 INTERVAL intervals;
d311d28c 1284 ptrdiff_t outgoing_insbytes = insbytes;
23b20a70 1285 Lisp_Object deletion;
c5ca4d3a 1286
e2688e4a 1287 check_markers ();
60ea6052 1288
c5ca4d3a 1289 GCPRO1 (new);
6bbd7a29 1290 deletion = Qnil;
c5ca4d3a
RS
1291
1292 if (prepare)
1293 {
d311d28c 1294 ptrdiff_t range_length = to - from;
c5ca4d3a
RS
1295 prepare_to_modify_buffer (from, to, &from);
1296 to = from + range_length;
1297 }
1298
3be11131
RS
1299 UNGCPRO;
1300
b50a28de 1301 /* Make args be valid. */
c5ca4d3a
RS
1302 if (from < BEGV)
1303 from = BEGV;
1304 if (to > ZV)
1305 to = ZV;
1306
3be11131
RS
1307 from_byte = CHAR_TO_BYTE (from);
1308 to_byte = CHAR_TO_BYTE (to);
c5ca4d3a 1309
3be11131
RS
1310 nchars_del = to - from;
1311 nbytes_del = to_byte - from_byte;
1312
1313 if (nbytes_del <= 0 && insbytes == 0)
1314 return;
c5ca4d3a 1315
1f90a790
RS
1316 /* Make OUTGOING_INSBYTES describe the text
1317 as it will be inserted in this buffer. */
1318
4b4deea2 1319 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
1f90a790 1320 outgoing_insbytes = inschars;
2a1d8be0 1321 else if (! STRING_MULTIBYTE (new))
1f90a790 1322 outgoing_insbytes
d5db4077 1323 = count_size_as_multibyte (SDATA (new), insbytes);
1f90a790 1324
c5ca4d3a
RS
1325 GCPRO1 (new);
1326
1327 /* Make sure the gap is somewhere in or next to what we are deleting. */
1328 if (from > GPT)
3be11131 1329 gap_right (from, from_byte);
c5ca4d3a 1330 if (to < GPT)
3be11131 1331 gap_left (to, to_byte, 0);
c5ca4d3a 1332
039af53a
KH
1333 /* Even if we don't record for undo, we must keep the original text
1334 because we may have to recover it because of inappropriate byte
1335 combining. */
4b4deea2 1336 if (! EQ (BVAR (current_buffer, undo_list), Qt))
b16afa45 1337 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
c5ca4d3a 1338
3be11131
RS
1339 GAP_SIZE += nbytes_del;
1340 ZV -= nchars_del;
1341 Z -= nchars_del;
1342 ZV_BYTE -= nbytes_del;
1343 Z_BYTE -= nbytes_del;
c5ca4d3a 1344 GPT = from;
3be11131 1345 GPT_BYTE = from_byte;
017e09ac 1346 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
c5ca4d3a 1347
e2688e4a 1348 eassert (GPT <= GPT_BYTE);
3be11131 1349
a50df55b
GM
1350 if (GPT - BEG < BEG_UNCHANGED)
1351 BEG_UNCHANGED = GPT - BEG;
1352 if (Z - GPT < END_UNCHANGED)
1353 END_UNCHANGED = Z - GPT;
c5ca4d3a 1354
599a9e4f
PE
1355 if (GAP_SIZE < outgoing_insbytes)
1356 make_gap (outgoing_insbytes - GAP_SIZE);
c5ca4d3a 1357
1f90a790
RS
1358 /* Copy the string text into the buffer, perhaps converting
1359 between single-byte and multibyte. */
d5db4077 1360 copy_text (SDATA (new), GPT_ADDR, insbytes,
2a1d8be0 1361 STRING_MULTIBYTE (new),
4b4deea2 1362 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
1f90a790 1363
b16afa45 1364#ifdef BYTE_COMBINING_DEBUG
255c7dae
RS
1365 /* We have copied text into the gap, but we have not marked
1366 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1367 here, for both the previous text and the following text.
1368 Meanwhile, GPT_ADDR does point to
432f78d2 1369 the text that has been stored by copy_text. */
b16afa45
KH
1370 if (count_combining_before (GPT_ADDR, outgoing_insbytes, from, from_byte)
1371 || count_combining_after (GPT_ADDR, outgoing_insbytes, from, from_byte))
1088b922 1372 emacs_abort ();
b16afa45 1373#endif
432f78d2 1374
af1f7e06
DA
1375 /* Record the insertion first, so that when we undo,
1376 the deletion will be undone first. Thus, undo
1377 will insert before deleting, and thus will keep
1378 the markers before and after this text separate. */
3521bd09
DA
1379 if (!NILP (deletion))
1380 {
1381 record_insert (from + SCHARS (deletion), inschars);
1382 record_delete (from, deletion);
1383 }
c5ca4d3a 1384
1f90a790
RS
1385 GAP_SIZE -= outgoing_insbytes;
1386 GPT += inschars;
1387 ZV += inschars;
1388 Z += inschars;
1389 GPT_BYTE += outgoing_insbytes;
1390 ZV_BYTE += outgoing_insbytes;
1391 Z_BYTE += outgoing_insbytes;
c5ca4d3a
RS
1392 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1393
e2688e4a 1394 eassert (GPT <= GPT_BYTE);
3be11131 1395
048a0fbb 1396 /* Adjust markers for the deletion and the insertion. */
60aa777a 1397 if (markers)
048a0fbb
RS
1398 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1399 inschars, outgoing_insbytes);
c5ca4d3a 1400
2f294edf
DA
1401 /* Adjust the overlay center as needed. This must be done after
1402 adjusting the markers that bound the overlays. */
1403 adjust_overlays_for_delete (from, nchars_del);
1404 adjust_overlays_for_insert (from, inschars);
1405
255c7dae 1406 offset_intervals (current_buffer, from, inschars - nchars_del);
ce97a2d7
RS
1407
1408 /* Get the intervals for the part of the string we are inserting--
1409 not including the combined-before bytes. */
0c94c8d6 1410 intervals = string_intervals (new);
ce97a2d7 1411 /* Insert those intervals. */
1f90a790 1412 graft_intervals_into_buffer (intervals, from, inschars,
ce97a2d7 1413 current_buffer, inherit);
c5ca4d3a 1414
1f90a790
RS
1415 /* Relocate point as if it were a marker. */
1416 if (from < PT)
8bedbe9d 1417 adjust_point ((from + inschars - (PT < to ? PT : to)),
1f90a790 1418 (from_byte + outgoing_insbytes
8bedbe9d 1419 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
c5ca4d3a 1420
1f90a790
RS
1421 if (outgoing_insbytes == 0)
1422 evaporate_overlays (from);
93b882e8 1423
e2688e4a 1424 check_markers ();
60ea6052 1425
c5ca4d3a 1426 MODIFF++;
3e145152 1427 CHARS_MODIFF = MODIFF;
c5ca4d3a
RS
1428 UNGCPRO;
1429
255c7dae 1430 signal_after_change (from, nchars_del, GPT - from);
0ef71121 1431 update_compositions (from, GPT, CHECK_BORDER);
c5ca4d3a
RS
1432}
1433\f
085db7de
RS
1434/* Replace the text from character positions FROM to TO with
1435 the text in INS of length INSCHARS.
1436 Keep the text properties that applied to the old characters
1437 (extending them to all the new chars if there are more new chars).
1438
1439 Note that this does not yet handle markers quite right.
1440
a08d4ba7 1441 If MARKERS, relocate markers.
085db7de
RS
1442
1443 Unlike most functions at this level, never call
1444 prepare_to_modify_buffer and never call signal_after_change. */
1445
1446void
d311d28c
PE
1447replace_range_2 (ptrdiff_t from, ptrdiff_t from_byte,
1448 ptrdiff_t to, ptrdiff_t to_byte,
1449 const char *ins, ptrdiff_t inschars, ptrdiff_t insbytes,
a08d4ba7 1450 bool markers)
085db7de 1451{
d311d28c 1452 ptrdiff_t nbytes_del, nchars_del;
085db7de 1453
e2688e4a 1454 check_markers ();
085db7de
RS
1455
1456 nchars_del = to - from;
1457 nbytes_del = to_byte - from_byte;
1458
1459 if (nbytes_del <= 0 && insbytes == 0)
1460 return;
1461
085db7de
RS
1462 /* Make sure the gap is somewhere in or next to what we are deleting. */
1463 if (from > GPT)
1464 gap_right (from, from_byte);
1465 if (to < GPT)
1466 gap_left (to, to_byte, 0);
1467
1468 GAP_SIZE += nbytes_del;
1469 ZV -= nchars_del;
1470 Z -= nchars_del;
1471 ZV_BYTE -= nbytes_del;
1472 Z_BYTE -= nbytes_del;
1473 GPT = from;
1474 GPT_BYTE = from_byte;
1475 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1476
e2688e4a 1477 eassert (GPT <= GPT_BYTE);
085db7de
RS
1478
1479 if (GPT - BEG < BEG_UNCHANGED)
1480 BEG_UNCHANGED = GPT - BEG;
1481 if (Z - GPT < END_UNCHANGED)
1482 END_UNCHANGED = Z - GPT;
1483
1484 if (GAP_SIZE < insbytes)
1485 make_gap (insbytes - GAP_SIZE);
1486
1487 /* Copy the replacement text into the buffer. */
72af86bd 1488 memcpy (GPT_ADDR, ins, insbytes);
085db7de
RS
1489
1490#ifdef BYTE_COMBINING_DEBUG
1491 /* We have copied text into the gap, but we have not marked
1492 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1493 here, for both the previous text and the following text.
1494 Meanwhile, GPT_ADDR does point to
1495 the text that has been stored by copy_text. */
1496 if (count_combining_before (GPT_ADDR, insbytes, from, from_byte)
1497 || count_combining_after (GPT_ADDR, insbytes, from, from_byte))
1088b922 1498 emacs_abort ();
085db7de
RS
1499#endif
1500
1501 GAP_SIZE -= insbytes;
1502 GPT += inschars;
1503 ZV += inschars;
1504 Z += inschars;
1505 GPT_BYTE += insbytes;
1506 ZV_BYTE += insbytes;
1507 Z_BYTE += insbytes;
1508 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1509
e2688e4a 1510 eassert (GPT <= GPT_BYTE);
085db7de 1511
2f294edf
DA
1512 /* Adjust markers for the deletion and the insertion. */
1513 if (markers
1514 && ! (nchars_del == 1 && inschars == 1 && nbytes_del == insbytes))
1515 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1516 inschars, insbytes);
1517
085db7de
RS
1518 /* Adjust the overlay center as needed. This must be done after
1519 adjusting the markers that bound the overlays. */
1520 if (nchars_del != inschars)
1521 {
1522 adjust_overlays_for_insert (from, inschars);
1523 adjust_overlays_for_delete (from + inschars, nchars_del);
1524 }
1525
085db7de
RS
1526 offset_intervals (current_buffer, from, inschars - nchars_del);
1527
1528 /* Relocate point as if it were a marker. */
7077904e
KH
1529 if (from < PT && (nchars_del != inschars || nbytes_del != insbytes))
1530 {
1531 if (PT < to)
1532 /* PT was within the deleted text. Move it to FROM. */
1533 adjust_point (from - PT, from_byte - PT_BYTE);
1534 else
1535 adjust_point (inschars - nchars_del, insbytes - nbytes_del);
1536 }
085db7de
RS
1537
1538 if (insbytes == 0)
1539 evaporate_overlays (from);
1540
e2688e4a 1541 check_markers ();
085db7de
RS
1542
1543 MODIFF++;
3e145152 1544 CHARS_MODIFF = MODIFF;
085db7de
RS
1545}
1546\f
b45433b3 1547/* Delete characters in current buffer
3be11131
RS
1548 from FROM up to (but not including) TO.
1549 If TO comes before FROM, we delete nothing. */
b45433b3 1550
c660b094 1551void
d311d28c 1552del_range (ptrdiff_t from, ptrdiff_t to)
47c64747 1553{
7dae4502 1554 del_range_1 (from, to, 1, 0);
47c64747
RS
1555}
1556
7dae4502
SM
1557/* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1558 RET_STRING says to return the deleted text. */
47c64747 1559
7dae4502 1560Lisp_Object
a08d4ba7 1561del_range_1 (ptrdiff_t from, ptrdiff_t to, bool prepare, bool ret_string)
b45433b3 1562{
d311d28c 1563 ptrdiff_t from_byte, to_byte;
7dae4502
SM
1564 Lisp_Object deletion;
1565 struct gcpro gcpro1;
3be11131
RS
1566
1567 /* Make args be valid */
1568 if (from < BEGV)
1569 from = BEGV;
1570 if (to > ZV)
1571 to = ZV;
1572
1573 if (to <= from)
7dae4502 1574 return Qnil;
3be11131
RS
1575
1576 if (prepare)
1577 {
d311d28c 1578 ptrdiff_t range_length = to - from;
3be11131 1579 prepare_to_modify_buffer (from, to, &from);
0a411995 1580 to = min (ZV, from + range_length);
3be11131
RS
1581 }
1582
1583 from_byte = CHAR_TO_BYTE (from);
1584 to_byte = CHAR_TO_BYTE (to);
1585
7dae4502 1586 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
5e617bc2 1587 GCPRO1 (deletion);
9c36993a 1588 signal_after_change (from, to - from, 0);
233cc02d 1589 update_compositions (from, from, CHECK_HEAD);
7dae4502
SM
1590 UNGCPRO;
1591 return deletion;
3be11131
RS
1592}
1593
1594/* Like del_range_1 but args are byte positions, not char positions. */
1595
1596void
a08d4ba7 1597del_range_byte (ptrdiff_t from_byte, ptrdiff_t to_byte, bool prepare)
3be11131 1598{
d311d28c 1599 ptrdiff_t from, to;
3be11131
RS
1600
1601 /* Make args be valid */
1602 if (from_byte < BEGV_BYTE)
1603 from_byte = BEGV_BYTE;
1604 if (to_byte > ZV_BYTE)
1605 to_byte = ZV_BYTE;
1606
1607 if (to_byte <= from_byte)
1608 return;
1609
1610 from = BYTE_TO_CHAR (from_byte);
1611 to = BYTE_TO_CHAR (to_byte);
b45433b3 1612
d206af14
RS
1613 if (prepare)
1614 {
d311d28c
PE
1615 ptrdiff_t old_from = from, old_to = Z - to;
1616 ptrdiff_t range_length = to - from;
d206af14
RS
1617 prepare_to_modify_buffer (from, to, &from);
1618 to = from + range_length;
3be11131
RS
1619
1620 if (old_from != from)
1621 from_byte = CHAR_TO_BYTE (from);
0a411995
GM
1622 if (to > ZV)
1623 {
1624 to = ZV;
1625 to_byte = ZV_BYTE;
1626 }
1627 else if (old_to == Z - to)
3be11131 1628 to_byte = CHAR_TO_BYTE (to);
d206af14
RS
1629 }
1630
7dae4502 1631 del_range_2 (from, from_byte, to, to_byte, 0);
9c36993a 1632 signal_after_change (from, to - from, 0);
0ef71121 1633 update_compositions (from, from, CHECK_HEAD);
3be11131
RS
1634}
1635
1636/* Like del_range_1, but positions are specified both as charpos
1637 and bytepos. */
1638
1639void
d311d28c 1640del_range_both (ptrdiff_t from, ptrdiff_t from_byte,
a08d4ba7 1641 ptrdiff_t to, ptrdiff_t to_byte, bool prepare)
3be11131 1642{
b45433b3 1643 /* Make args be valid */
3be11131
RS
1644 if (from_byte < BEGV_BYTE)
1645 from_byte = BEGV_BYTE;
1646 if (to_byte > ZV_BYTE)
1647 to_byte = ZV_BYTE;
1648
1649 if (to_byte <= from_byte)
1650 return;
1651
b45433b3
JB
1652 if (from < BEGV)
1653 from = BEGV;
1654 if (to > ZV)
1655 to = ZV;
1656
3be11131
RS
1657 if (prepare)
1658 {
d311d28c
PE
1659 ptrdiff_t old_from = from, old_to = Z - to;
1660 ptrdiff_t range_length = to - from;
3be11131
RS
1661 prepare_to_modify_buffer (from, to, &from);
1662 to = from + range_length;
1663
1664 if (old_from != from)
1665 from_byte = CHAR_TO_BYTE (from);
0a411995
GM
1666 if (to > ZV)
1667 {
1668 to = ZV;
1669 to_byte = ZV_BYTE;
1670 }
1671 else if (old_to == Z - to)
3be11131
RS
1672 to_byte = CHAR_TO_BYTE (to);
1673 }
1674
7dae4502 1675 del_range_2 (from, from_byte, to, to_byte, 0);
9c36993a 1676 signal_after_change (from, to - from, 0);
0ef71121 1677 update_compositions (from, from, CHECK_HEAD);
3be11131
RS
1678}
1679
1680/* Delete a range of text, specified both as character positions
1681 and byte positions. FROM and TO are character positions,
7dae4502 1682 while FROM_BYTE and TO_BYTE are byte positions.
a08d4ba7 1683 If RET_STRING, the deleted area is returned as a string. */
3be11131 1684
7dae4502 1685Lisp_Object
d311d28c 1686del_range_2 (ptrdiff_t from, ptrdiff_t from_byte,
a08d4ba7 1687 ptrdiff_t to, ptrdiff_t to_byte, bool ret_string)
3be11131 1688{
a08d4ba7 1689 ptrdiff_t nbytes_del, nchars_del;
628cea90 1690 Lisp_Object deletion;
3be11131 1691
e2688e4a 1692 check_markers ();
60ea6052 1693
3be11131
RS
1694 nchars_del = to - from;
1695 nbytes_del = to_byte - from_byte;
b45433b3
JB
1696
1697 /* Make sure the gap is somewhere in or next to what we are deleting. */
1698 if (from > GPT)
3be11131 1699 gap_right (from, from_byte);
b45433b3 1700 if (to < GPT)
3be11131 1701 gap_left (to, to_byte, 0);
b45433b3 1702
b16afa45
KH
1703#ifdef BYTE_COMBINING_DEBUG
1704 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer, to_byte),
1705 Z_BYTE - to_byte, from, from_byte))
1088b922 1706 emacs_abort ();
b16afa45 1707#endif
628cea90 1708
4b4deea2 1709 if (ret_string || ! EQ (BVAR (current_buffer, undo_list), Qt))
b16afa45 1710 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
7dae4502
SM
1711 else
1712 deletion = Qnil;
1713
8948d317
RS
1714 /* Relocate all markers pointing into the new, larger gap
1715 to point at the end of the text before the gap.
3be11131
RS
1716 Do this before recording the deletion,
1717 so that undo handles this after reinserting the text. */
1718 adjust_markers_for_delete (from, from_byte, to, to_byte);
b16afa45 1719
af1f7e06 1720 record_delete (from, deletion);
be09561e 1721 MODIFF++;
3e145152 1722 CHARS_MODIFF = MODIFF;
be09561e 1723
b45433b3 1724 /* Relocate point as if it were a marker. */
2bcaed71 1725 if (from < PT)
3be11131
RS
1726 adjust_point (from - (PT < to ? PT : to),
1727 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
b45433b3 1728
3be11131 1729 offset_intervals (current_buffer, from, - nchars_del);
16032db6 1730
adde4858 1731 /* Adjust the overlay center as needed. This must be done after
a7f38d28 1732 adjusting the markers that bound the overlays. */
e3a87305 1733 adjust_overlays_for_delete (from, nchars_del);
adde4858 1734
3be11131
RS
1735 GAP_SIZE += nbytes_del;
1736 ZV_BYTE -= nbytes_del;
1737 Z_BYTE -= nbytes_del;
1738 ZV -= nchars_del;
1739 Z -= nchars_del;
b45433b3 1740 GPT = from;
3be11131 1741 GPT_BYTE = from_byte;
b3b58c01
AS
1742 if (GAP_SIZE > 0 && !current_buffer->text->inhibit_shrinking)
1743 /* Put an anchor, unless called from decode_coding_object which
1744 needs to access the previous gap contents. */
1745 *(GPT_ADDR) = 0;
e3a87305 1746
e2688e4a 1747 eassert (GPT <= GPT_BYTE);
3be11131 1748
a50df55b
GM
1749 if (GPT - BEG < BEG_UNCHANGED)
1750 BEG_UNCHANGED = GPT - BEG;
1751 if (Z - GPT < END_UNCHANGED)
1752 END_UNCHANGED = Z - GPT;
b45433b3 1753
e2688e4a 1754 check_markers ();
60ea6052 1755
d386034e 1756 evaporate_overlays (from);
7dae4502
SM
1757
1758 return deletion;
b45433b3 1759}
20edc1c9 1760
00012b86 1761/* Call this if you're about to change the text of current buffer
20edc1c9 1762 from character positions START to END. This checks the read-only
3be11131
RS
1763 properties of the region, calls the necessary modification hooks,
1764 and warns the next redisplay that it should pay attention to that
00012b86 1765 area. */
3be11131 1766
c660b094 1767void
00012b86 1768modify_text (ptrdiff_t start, ptrdiff_t end)
b45433b3 1769{
d206af14 1770 prepare_to_modify_buffer (start, end, NULL);
b45433b3 1771
20edc1c9 1772 BUF_COMPUTE_UNCHANGED (current_buffer, start - 1, end);
9fbf87cd 1773 if (MODIFF <= SAVE_MODIFF)
83010cd6 1774 record_first_change ();
b45433b3 1775 MODIFF++;
00012b86 1776 CHARS_MODIFF = MODIFF;
04a759c8 1777
20edc1c9 1778 bset_point_before_scroll (current_buffer, Qnil);
b45433b3 1779}
20edc1c9 1780
dcd163ac 1781static Lisp_Object Qregion_extract_function;
3472b6c6 1782
3be11131
RS
1783/* Check that it is okay to modify the buffer between START and END,
1784 which are char positions.
1785
679194a6
JA
1786 Run the before-change-function, if any. If intervals are in use,
1787 verify that the text to be modified is not read-only, and call
d206af14
RS
1788 any modification properties the text may have.
1789
1790 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1791 by holding its value temporarily in a marker. */
b45433b3 1792
c660b094 1793void
00012b86
DA
1794prepare_to_modify_buffer_1 (ptrdiff_t start, ptrdiff_t end,
1795 ptrdiff_t *preserve_ptr)
b45433b3 1796{
234fb773
CY
1797 struct buffer *base_buffer;
1798
4b4deea2 1799 if (!NILP (BVAR (current_buffer, read_only)))
b45433b3
JB
1800 Fbarf_if_buffer_read_only ();
1801
c6afe371 1802 /* If we're modifying the buffer other than shown in a selected window,
5ad86e34 1803 let redisplay consider other windows if this buffer is visible. */
e74aeda8 1804 if (XBUFFER (XWINDOW (selected_window)->contents) != current_buffer
5ad86e34 1805 && buffer_window_count (current_buffer))
2e9f55fd
GM
1806 ++windows_or_buffers_changed;
1807
0c94c8d6 1808 if (buffer_intervals (current_buffer))
d206af14
RS
1809 {
1810 if (preserve_ptr)
1811 {
1812 Lisp_Object preserve_marker;
1813 struct gcpro gcpro1;
1814 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil);
1815 GCPRO1 (preserve_marker);
1816 verify_interval_modification (current_buffer, start, end);
1817 *preserve_ptr = marker_position (preserve_marker);
dab0b04d 1818 unchain_marker (XMARKER (preserve_marker));
d206af14
RS
1819 UNGCPRO;
1820 }
1821 else
1822 verify_interval_modification (current_buffer, start, end);
1823 }
b45433b3 1824
234fb773
CY
1825 /* For indirect buffers, use the base buffer to check clashes. */
1826 if (current_buffer->base_buffer != 0)
1827 base_buffer = current_buffer->base_buffer;
1828 else
1829 base_buffer = current_buffer;
1830
b45433b3 1831#ifdef CLASH_DETECTION
4b4deea2 1832 if (!NILP (BVAR (base_buffer, file_truename))
ab6c5c0c 1833 /* Make binding buffer-file-name to nil effective. */
4b4deea2 1834 && !NILP (BVAR (base_buffer, filename))
9fbf87cd 1835 && SAVE_MODIFF >= MODIFF)
4b4deea2 1836 lock_file (BVAR (base_buffer, file_truename));
b45433b3
JB
1837#else
1838 /* At least warn if this file has changed on disk since it was visited. */
4b4deea2 1839 if (!NILP (BVAR (base_buffer, filename))
9fbf87cd 1840 && SAVE_MODIFF >= MODIFF
d427b66a 1841 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
4b4deea2 1842 && !NILP (Ffile_exists_p (BVAR (base_buffer, filename))))
b45433b3 1843 call1 (intern ("ask-user-about-supersession-threat"),
4b4deea2 1844 BVAR (base_buffer,filename));
b45433b3
JB
1845#endif /* not CLASH_DETECTION */
1846
9852377f 1847 /* If `select-active-regions' is non-nil, save the region text. */
3472b6c6 1848 /* FIXME: Move this to Elisp (via before-change-functions). */
4b4deea2 1849 if (!NILP (BVAR (current_buffer, mark_active))
8b78d5e3 1850 && !inhibit_modification_hooks
4b4deea2 1851 && XMARKER (BVAR (current_buffer, mark))->buffer
7c23dd44
CY
1852 && NILP (Vsaved_region_selection)
1853 && (EQ (Vselect_active_regions, Qonly)
1854 ? EQ (CAR_SAFE (Vtransient_mark_mode), Qonly)
1855 : (!NILP (Vselect_active_regions)
1856 && !NILP (Vtransient_mark_mode))))
dcd163ac
PE
1857 Vsaved_region_selection
1858 = call1 (Fsymbol_value (Qregion_extract_function), Qnil);
9852377f 1859
d206af14 1860 signal_before_change (start, end, preserve_ptr);
00012b86
DA
1861 Vdeactivate_mark = Qt;
1862}
1863
1864/* Like above, but called when we know that the buffer text
1865 will be modified and region caches should be invalidated. */
1866
1867void
1868prepare_to_modify_buffer (ptrdiff_t start, ptrdiff_t end,
1869 ptrdiff_t *preserve_ptr)
1870{
1871 prepare_to_modify_buffer_1 (start, end, preserve_ptr);
2f545eea 1872
56e1065e
JB
1873 if (current_buffer->newline_cache)
1874 invalidate_region_cache (current_buffer,
1875 current_buffer->newline_cache,
1876 start - BEG, Z - end);
1877 if (current_buffer->width_run_cache)
1878 invalidate_region_cache (current_buffer,
1879 current_buffer->width_run_cache,
1880 start - BEG, Z - end);
e30b79c1
DA
1881 if (current_buffer->bidi_paragraph_cache)
1882 invalidate_region_cache (current_buffer,
1883 current_buffer->bidi_paragraph_cache,
1884 start - BEG, Z - end);
b45433b3 1885}
00012b86 1886
d206af14
RS
1887/* These macros work with an argument named `preserve_ptr'
1888 and a local variable named `preserve_marker'. */
1889
1890#define PRESERVE_VALUE \
1891 if (preserve_ptr && NILP (preserve_marker)) \
1892 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1893
1894#define RESTORE_VALUE \
1895 if (! NILP (preserve_marker)) \
1896 { \
1897 *preserve_ptr = marker_position (preserve_marker); \
dab0b04d 1898 unchain_marker (XMARKER (preserve_marker)); \
d206af14
RS
1899 }
1900
b86e0aaf
RS
1901#define PRESERVE_START_END \
1902 if (NILP (start_marker)) \
1903 start_marker = Fcopy_marker (start, Qnil); \
1904 if (NILP (end_marker)) \
1905 end_marker = Fcopy_marker (end, Qnil);
1906
1907#define FETCH_START \
1908 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1909
1910#define FETCH_END \
1911 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1912
4a181359 1913/* Set a variable to nil if an error occurred.
e6d3f090
SM
1914 Don't change the variable if there was no error.
1915 VAL is a cons-cell (VARIABLE . NO-ERROR-FLAG).
1916 VARIABLE is the variable to maybe set to nil.
1917 NO-ERROR-FLAG is nil if there was an error,
1918 anything else meaning no error (so this function does nothing). */
27e498e6 1919struct rvoe_arg
4a181359 1920{
27e498e6
PE
1921 Lisp_Object *location;
1922 bool errorp;
1923};
1924
1925static void
1926reset_var_on_error (void *ptr)
1927{
1928 struct rvoe_arg *p = ptr;
1929 if (p->errorp)
1930 *p->location = Qnil;
4a181359
SM
1931}
1932
eb8c3be9 1933/* Signal a change to the buffer immediately before it happens.
d206af14
RS
1934 START_INT and END_INT are the bounds of the text to be changed.
1935
1936 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1937 by holding its value temporarily in a marker. */
b45433b3 1938
4889fc82 1939static void
d311d28c
PE
1940signal_before_change (ptrdiff_t start_int, ptrdiff_t end_int,
1941 ptrdiff_t *preserve_ptr)
b45433b3 1942{
fb4ee5cd 1943 Lisp_Object start, end;
b86e0aaf 1944 Lisp_Object start_marker, end_marker;
d206af14 1945 Lisp_Object preserve_marker;
b86e0aaf 1946 struct gcpro gcpro1, gcpro2, gcpro3;
d311d28c 1947 ptrdiff_t count = SPECPDL_INDEX ();
27e498e6 1948 struct rvoe_arg rvoe_arg;
fb4ee5cd 1949
fd16a4c6
KH
1950 if (inhibit_modification_hooks)
1951 return;
1952
fb4ee5cd
RS
1953 start = make_number (start_int);
1954 end = make_number (end_int);
d206af14 1955 preserve_marker = Qnil;
b86e0aaf
RS
1956 start_marker = Qnil;
1957 end_marker = Qnil;
1958 GCPRO3 (preserve_marker, start_marker, end_marker);
fb4ee5cd 1959
4a181359
SM
1960 specbind (Qinhibit_modification_hooks, Qt);
1961
dee091a3
JD
1962 /* If buffer is unmodified, run a special hook for that case. The
1963 check for Vfirst_change_hook is just a minor optimization. */
9fbf87cd 1964 if (SAVE_MODIFF >= MODIFF
dee091a3 1965 && !NILP (Vfirst_change_hook))
d206af14
RS
1966 {
1967 PRESERVE_VALUE;
b86e0aaf 1968 PRESERVE_START_END;
dee091a3 1969 Frun_hooks (1, &Qfirst_change_hook);
d206af14 1970 }
dbc4e1c1 1971
3d1e2d9c 1972 /* Now run the before-change-functions if any. */
e45fb8bf
RS
1973 if (!NILP (Vbefore_change_functions))
1974 {
3d1e2d9c 1975 Lisp_Object args[3];
27e498e6
PE
1976 rvoe_arg.location = &Vbefore_change_functions;
1977 rvoe_arg.errorp = 1;
3d1e2d9c 1978
d206af14 1979 PRESERVE_VALUE;
b86e0aaf 1980 PRESERVE_START_END;
d206af14 1981
4a181359 1982 /* Mark before-change-functions to be reset to nil in case of error. */
27e498e6 1983 record_unwind_protect_ptr (reset_var_on_error, &rvoe_arg);
3d1e2d9c
RS
1984
1985 /* Actually run the hook functions. */
1986 args[0] = Qbefore_change_functions;
b86e0aaf
RS
1987 args[1] = FETCH_START;
1988 args[2] = FETCH_END;
4a181359 1989 Frun_hook_with_args (3, args);
3d1e2d9c 1990
4a181359 1991 /* There was no error: unarm the reset_on_error. */
27e498e6 1992 rvoe_arg.errorp = 0;
e45fb8bf 1993 }
d07c0804 1994
4cb3e6b3 1995 if (buffer_has_overlays ())
d206af14
RS
1996 {
1997 PRESERVE_VALUE;
b86e0aaf
RS
1998 report_overlay_modification (FETCH_START, FETCH_END, 0,
1999 FETCH_START, FETCH_END, Qnil);
d206af14
RS
2000 }
2001
b86e0aaf
RS
2002 if (! NILP (start_marker))
2003 free_marker (start_marker);
2004 if (! NILP (end_marker))
2005 free_marker (end_marker);
d206af14
RS
2006 RESTORE_VALUE;
2007 UNGCPRO;
4a181359
SM
2008
2009 unbind_to (count, Qnil);
b45433b3
JB
2010}
2011
eb8c3be9 2012/* Signal a change immediately after it happens.
3be11131 2013 CHARPOS is the character position of the start of the changed text.
b45433b3
JB
2014 LENDEL is the number of characters of the text before the change.
2015 (Not the whole buffer; just the part that was changed.)
8b09e5d0
RS
2016 LENINS is the number of characters in that part of the text
2017 after the change. */
b45433b3 2018
c660b094 2019void
d311d28c 2020signal_after_change (ptrdiff_t charpos, ptrdiff_t lendel, ptrdiff_t lenins)
b45433b3 2021{
d311d28c 2022 ptrdiff_t count = SPECPDL_INDEX ();
27e498e6
PE
2023 struct rvoe_arg rvoe_arg;
2024
fd16a4c6
KH
2025 if (inhibit_modification_hooks)
2026 return;
2027
fb2e7d14
RS
2028 /* If we are deferring calls to the after-change functions
2029 and there are no before-change functions,
2030 just record the args that we were going to use. */
2031 if (! NILP (Vcombine_after_change_calls)
1675d086 2032 && NILP (Vbefore_change_functions)
4cb3e6b3 2033 && !buffer_has_overlays ())
fb2e7d14
RS
2034 {
2035 Lisp_Object elt;
2036
2037 if (!NILP (combine_after_change_list)
2038 && current_buffer != XBUFFER (combine_after_change_buffer))
2039 Fcombine_after_change_execute ();
2040
3de717bd
DA
2041 elt = list3i (charpos - BEG, Z - (charpos - lendel + lenins),
2042 lenins - lendel);
fb2e7d14
RS
2043 combine_after_change_list
2044 = Fcons (elt, combine_after_change_list);
2045 combine_after_change_buffer = Fcurrent_buffer ();
2046
2047 return;
2048 }
2049
177c0ea7 2050 if (!NILP (combine_after_change_list))
fb2e7d14
RS
2051 Fcombine_after_change_execute ();
2052
4a181359
SM
2053 specbind (Qinhibit_modification_hooks, Qt);
2054
e45fb8bf
RS
2055 if (!NILP (Vafter_change_functions))
2056 {
3d1e2d9c 2057 Lisp_Object args[4];
27e498e6
PE
2058 rvoe_arg.location = &Vafter_change_functions;
2059 rvoe_arg.errorp = 1;
4a181359
SM
2060
2061 /* Mark after-change-functions to be reset to nil in case of error. */
27e498e6 2062 record_unwind_protect_ptr (reset_var_on_error, &rvoe_arg);
3d1e2d9c
RS
2063
2064 /* Actually run the hook functions. */
2065 args[0] = Qafter_change_functions;
3be11131
RS
2066 XSETFASTINT (args[1], charpos);
2067 XSETFASTINT (args[2], charpos + lenins);
3d1e2d9c 2068 XSETFASTINT (args[3], lendel);
4a181359 2069 Frun_hook_with_args (4, args);
3d1e2d9c 2070
4a181359 2071 /* There was no error: unarm the reset_on_error. */
27e498e6 2072 rvoe_arg.errorp = 0;
e45fb8bf 2073 }
d07c0804 2074
4cb3e6b3 2075 if (buffer_has_overlays ())
3be11131
RS
2076 report_overlay_modification (make_number (charpos),
2077 make_number (charpos + lenins),
d07c0804 2078 1,
3be11131
RS
2079 make_number (charpos),
2080 make_number (charpos + lenins),
d07c0804 2081 make_number (lendel));
c5ca0786
RS
2082
2083 /* After an insertion, call the text properties
2084 insert-behind-hooks or insert-in-front-hooks. */
2085 if (lendel == 0)
d6b81c0f
AS
2086 report_interval_modification (make_number (charpos),
2087 make_number (charpos + lenins));
4a181359
SM
2088
2089 unbind_to (count, Qnil);
b45433b3 2090}
fb2e7d14 2091
27e498e6 2092static void
971de7fb 2093Fcombine_after_change_execute_1 (Lisp_Object val)
fb2e7d14
RS
2094{
2095 Vcombine_after_change_calls = val;
fb2e7d14
RS
2096}
2097
2098DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
335c5470 2099 Scombine_after_change_execute, 0, 0, 0,
9fc9a531 2100 doc: /* This function is for use internally in the function `combine-after-change-calls'. */)
5842a27b 2101 (void)
fb2e7d14 2102{
d311d28c
PE
2103 ptrdiff_t count = SPECPDL_INDEX ();
2104 ptrdiff_t beg, end, change;
2105 ptrdiff_t begpos, endpos;
fb2e7d14
RS
2106 Lisp_Object tail;
2107
101e446f
KH
2108 if (NILP (combine_after_change_list))
2109 return Qnil;
2110
c47a9ed1
CY
2111 /* It is rare for combine_after_change_buffer to be invalid, but
2112 possible. It can happen when combine-after-change-calls is
2113 non-nil, and insertion calls a file handler (e.g. through
2114 lock_file) which scribbles into a temp file -- cyd */
2115 if (!BUFFERP (combine_after_change_buffer)
e578f381 2116 || !BUFFER_LIVE_P (XBUFFER (combine_after_change_buffer)))
c47a9ed1
CY
2117 {
2118 combine_after_change_list = Qnil;
2119 return Qnil;
2120 }
2121
66322887 2122 record_unwind_current_buffer ();
fb2e7d14
RS
2123
2124 Fset_buffer (combine_after_change_buffer);
2125
2126 /* # chars unchanged at beginning of buffer. */
2127 beg = Z - BEG;
2128 /* # chars unchanged at end of buffer. */
2129 end = beg;
2130 /* Total amount of insertion (negative for deletion). */
2131 change = 0;
2132
2133 /* Scan the various individual changes,
2134 accumulating the range info in BEG, END and CHANGE. */
2135 for (tail = combine_after_change_list; CONSP (tail);
03699b14 2136 tail = XCDR (tail))
fb2e7d14 2137 {
e688a080 2138 Lisp_Object elt;
d311d28c 2139 ptrdiff_t thisbeg, thisend, thischange;
fb2e7d14
RS
2140
2141 /* Extract the info from the next element. */
03699b14 2142 elt = XCAR (tail);
fb2e7d14
RS
2143 if (! CONSP (elt))
2144 continue;
03699b14 2145 thisbeg = XINT (XCAR (elt));
fb2e7d14 2146
03699b14 2147 elt = XCDR (elt);
fb2e7d14
RS
2148 if (! CONSP (elt))
2149 continue;
03699b14 2150 thisend = XINT (XCAR (elt));
fb2e7d14 2151
03699b14 2152 elt = XCDR (elt);
fb2e7d14
RS
2153 if (! CONSP (elt))
2154 continue;
03699b14 2155 thischange = XINT (XCAR (elt));
fb2e7d14
RS
2156
2157 /* Merge this range into the accumulated range. */
2158 change += thischange;
2159 if (thisbeg < beg)
2160 beg = thisbeg;
2161 if (thisend < end)
2162 end = thisend;
2163 }
2164
2165 /* Get the current start and end positions of the range
2166 that was changed. */
2167 begpos = BEG + beg;
2168 endpos = Z - end;
177c0ea7 2169
fb2e7d14
RS
2170 /* We are about to handle these, so discard them. */
2171 combine_after_change_list = Qnil;
2172
2173 /* Now run the after-change functions for real.
2174 Turn off the flag that defers them. */
2175 record_unwind_protect (Fcombine_after_change_execute_1,
2176 Vcombine_after_change_calls);
2177 signal_after_change (begpos, endpos - begpos - change, endpos - begpos);
0ef71121 2178 update_compositions (begpos, endpos, CHECK_ALL);
fb2e7d14 2179
101e446f 2180 return unbind_to (count, Qnil);
fb2e7d14
RS
2181}
2182\f
dfcf069d 2183void
971de7fb 2184syms_of_insdel (void)
fb2e7d14
RS
2185{
2186 staticpro (&combine_after_change_list);
bf0bf758 2187 staticpro (&combine_after_change_buffer);
fb2e7d14 2188 combine_after_change_list = Qnil;
101e446f 2189 combine_after_change_buffer = Qnil;
fb2e7d14 2190
29208e82 2191 DEFVAR_LISP ("combine-after-change-calls", Vcombine_after_change_calls,
9fc9a531 2192 doc: /* Used internally by the function `combine-after-change-calls' macro. */);
fb2e7d14
RS
2193 Vcombine_after_change_calls = Qnil;
2194
29208e82 2195 DEFVAR_BOOL ("inhibit-modification-hooks", inhibit_modification_hooks,
335c5470
PJ
2196 doc: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2197This affects `before-change-functions' and `after-change-functions',
2198as well as hooks attached to text properties and overlays. */);
7baf49cf 2199 inhibit_modification_hooks = 0;
cd3520a4 2200 DEFSYM (Qinhibit_modification_hooks, "inhibit-modification-hooks");
7baf49cf 2201
3472b6c6
SM
2202 DEFSYM (Qregion_extract_function, "region-extract-function");
2203
fb2e7d14
RS
2204 defsubr (&Scombine_after_change_execute);
2205}