Merge from emacs-24; up to 2012-12-22T19:09:52Z!rgm@gnu.org
[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
RS
773/* Insert a sequence of NCHARS chars which occupy NBYTES bytes
774 starting at STRING. INHERIT, PREPARE and BEFORE_MARKERS
775 are the same as in insert_1. */
776
777void
b68864e5 778insert_1_both (const char *string,
d311d28c 779 ptrdiff_t nchars, ptrdiff_t nbytes,
a08d4ba7 780 bool inherit, bool prepare, bool before_markers)
2b083808 781{
da80a8d5
GM
782 if (nchars == 0)
783 return;
177c0ea7 784
4b4deea2 785 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
57404188
KH
786 nchars = nbytes;
787
35d63725
RS
788 if (prepare)
789 /* Do this before moving and increasing the gap,
790 because the before-change hooks might move the gap
791 or make it smaller. */
792 prepare_to_modify_buffer (PT, PT, NULL);
793
2b083808
RS
794 if (PT != GPT)
795 move_gap_both (PT, PT_BYTE);
796 if (GAP_SIZE < nbytes)
797 make_gap (nbytes - GAP_SIZE);
798
b16afa45
KH
799#ifdef BYTE_COMBINING_DEBUG
800 if (count_combining_before (string, nbytes, PT, PT_BYTE)
801 || count_combining_after (string, nbytes, PT, PT_BYTE))
1088b922 802 emacs_abort ();
b16afa45 803#endif
432f78d2
RS
804
805 /* Record deletion of the surrounding text that combines with
806 the insertion. This, together with recording the insertion,
b16afa45
KH
807 will add up to the right stuff in the undo list. */
808 record_insert (PT, nchars);
2b083808 809 MODIFF++;
3e145152 810 CHARS_MODIFF = MODIFF;
2b083808 811
72af86bd 812 memcpy (GPT_ADDR, string, nbytes);
2b083808 813
2b083808 814 GAP_SIZE -= nbytes;
1f90a790
RS
815 GPT += nchars;
816 ZV += nchars;
817 Z += nchars;
2b083808
RS
818 GPT_BYTE += nbytes;
819 ZV_BYTE += nbytes;
820 Z_BYTE += nbytes;
821 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1f90a790 822
e2688e4a 823 eassert (GPT <= GPT_BYTE);
1f90a790 824
9dde4e0c
KS
825 /* The insert may have been in the unchanged region, so check again. */
826 if (Z - GPT < END_UNCHANGED)
827 END_UNCHANGED = Z - GPT;
828
1f90a790 829 adjust_overlays_for_insert (PT, nchars);
432f78d2 830 adjust_markers_for_insert (PT, PT_BYTE,
1f90a790 831 PT + nchars, PT_BYTE + nbytes,
2b083808 832 before_markers);
ce97a2d7 833
2f294edf 834 offset_intervals (current_buffer, PT, nchars);
1f90a790 835
0c94c8d6 836 if (!inherit && buffer_intervals (current_buffer))
f2cab2ea
GM
837 set_text_properties (make_number (PT), make_number (PT + nchars),
838 Qnil, Qnil, Qnil);
ce97a2d7 839
b16afa45 840 adjust_point (nchars, nbytes);
828f1ed3 841
e2688e4a 842 check_markers ();
2b083808 843}
3be11131 844\f
679194a6 845/* Insert the part of the text of STRING, a Lisp object assumed to be
2b083808
RS
846 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
847 starting at position POS / POS_BYTE. If the text of STRING has properties,
848 copy them into the buffer.
679194a6
JA
849
850 It does not work to use `insert' for this, because a GC could happen
72af86bd 851 before we copy the stuff into the buffer, and relocate the string
7e1ea612 852 without insert noticing. */
679194a6 853
c660b094 854void
d311d28c 855insert_from_string (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
a08d4ba7 856 ptrdiff_t length, ptrdiff_t length_byte, bool inherit)
395ec62e 857{
d311d28c 858 ptrdiff_t opoint = PT;
d8bf4256
RS
859
860 if (SCHARS (string) == 0)
861 return;
862
62b82678
RS
863 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
864 inherit, 0);
865 signal_after_change (opoint, 0, PT - opoint);
0ef71121 866 update_compositions (opoint, PT, CHECK_BORDER);
395ec62e
KH
867}
868
2b083808
RS
869/* Like `insert_from_string' except that all markers pointing
870 at the place where the insertion happens are adjusted to point after it. */
3be11131
RS
871
872void
ae19ba7c 873insert_from_string_before_markers (Lisp_Object string,
d311d28c
PE
874 ptrdiff_t pos, ptrdiff_t pos_byte,
875 ptrdiff_t length, ptrdiff_t length_byte,
a08d4ba7 876 bool inherit)
3be11131 877{
d311d28c 878 ptrdiff_t opoint = PT;
d8bf4256
RS
879
880 if (SCHARS (string) == 0)
881 return;
882
62b82678
RS
883 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
884 inherit, 1);
885 signal_after_change (opoint, 0, PT - opoint);
0ef71121 886 update_compositions (opoint, PT, CHECK_BORDER);
3be11131
RS
887}
888
889/* Subroutine of the insertion functions above. */
890
891static void
d311d28c
PE
892insert_from_string_1 (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
893 ptrdiff_t nchars, ptrdiff_t nbytes,
a08d4ba7 894 bool inherit, bool before_markers)
b45433b3 895{
b45433b3 896 struct gcpro gcpro1;
d311d28c 897 ptrdiff_t outgoing_nbytes = nbytes;
ce97a2d7 898 INTERVAL intervals;
2b083808
RS
899
900 /* Make OUTGOING_NBYTES describe the text
901 as it will be inserted in this buffer. */
902
4b4deea2 903 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
2b083808 904 outgoing_nbytes = nchars;
2a1d8be0 905 else if (! STRING_MULTIBYTE (string))
2b083808 906 outgoing_nbytes
f7e233a8 907 = count_size_as_multibyte (SDATA (string) + pos_byte,
2b083808 908 nbytes);
b45433b3 909
b45433b3 910 GCPRO1 (string);
35d63725
RS
911 /* Do this before moving and increasing the gap,
912 because the before-change hooks might move the gap
913 or make it smaller. */
d206af14 914 prepare_to_modify_buffer (PT, PT, NULL);
b45433b3 915
2bcaed71 916 if (PT != GPT)
3be11131 917 move_gap_both (PT, PT_BYTE);
534b9840 918 if (GAP_SIZE < outgoing_nbytes)
2b083808 919 make_gap (outgoing_nbytes - GAP_SIZE);
b45433b3
JB
920 UNGCPRO;
921
2b083808
RS
922 /* Copy the string text into the buffer, perhaps converting
923 between single-byte and multibyte. */
d5db4077 924 copy_text (SDATA (string) + pos_byte, GPT_ADDR, nbytes,
2a1d8be0 925 STRING_MULTIBYTE (string),
4b4deea2 926 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
b45433b3 927
b16afa45 928#ifdef BYTE_COMBINING_DEBUG
432f78d2
RS
929 /* We have copied text into the gap, but we have not altered
930 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
931 to these functions and get the same results as we would
932 have got earlier on. Meanwhile, PT_ADDR does point to
933 the text that has been stored by copy_text. */
b16afa45
KH
934 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
935 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1088b922 936 emacs_abort ();
b16afa45 937#endif
432f78d2 938
b16afa45 939 record_insert (PT, nchars);
432f78d2 940 MODIFF++;
3e145152 941 CHARS_MODIFF = MODIFF;
432f78d2 942
7792090e 943 GAP_SIZE -= outgoing_nbytes;
1f90a790
RS
944 GPT += nchars;
945 ZV += nchars;
946 Z += nchars;
2b083808
RS
947 GPT_BYTE += outgoing_nbytes;
948 ZV_BYTE += outgoing_nbytes;
949 Z_BYTE += outgoing_nbytes;
469ff680 950 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
3be11131 951
e2688e4a 952 eassert (GPT <= GPT_BYTE);
679194a6 953
9dde4e0c
KS
954 /* The insert may have been in the unchanged region, so check again. */
955 if (Z - GPT < END_UNCHANGED)
956 END_UNCHANGED = Z - GPT;
957
1f90a790
RS
958 adjust_overlays_for_insert (PT, nchars);
959 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
960 PT_BYTE + outgoing_nbytes,
1f90a790 961 before_markers);
ce97a2d7 962
1f90a790
RS
963 offset_intervals (current_buffer, PT, nchars);
964
0c94c8d6 965 intervals = string_intervals (string);
b16afa45 966 /* Get the intervals for the part of the string we are inserting. */
d5db4077 967 if (nbytes < SBYTES (string))
1f90a790 968 intervals = copy_intervals (intervals, pos, nchars);
177c0ea7 969
ce97a2d7 970 /* Insert those intervals. */
1f90a790 971 graft_intervals_into_buffer (intervals, PT, nchars,
9391e591 972 current_buffer, inherit);
ce97a2d7 973
b16afa45 974 adjust_point (nchars, outgoing_nbytes);
8f924df7 975
e2688e4a 976 check_markers ();
8f924df7
KH
977}
978\f
979/* Insert a sequence of NCHARS chars which occupy NBYTES bytes
980 starting at GPT_ADDR. */
981
982void
d311d28c 983insert_from_gap (ptrdiff_t nchars, ptrdiff_t nbytes)
8f924df7 984{
4b4deea2 985 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
8f924df7
KH
986 nchars = nbytes;
987
988 record_insert (GPT, nchars);
989 MODIFF++;
990
991 GAP_SIZE -= nbytes;
992 GPT += nchars;
993 ZV += nchars;
994 Z += nchars;
995 GPT_BYTE += nbytes;
996 ZV_BYTE += nbytes;
997 Z_BYTE += nbytes;
998 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
999
e2688e4a 1000 eassert (GPT <= GPT_BYTE);
8f924df7 1001
c669988b
KH
1002 adjust_overlays_for_insert (GPT - nchars, nchars);
1003 adjust_markers_for_insert (GPT - nchars, GPT_BYTE - nbytes,
1004 GPT, GPT_BYTE, 0);
8f924df7 1005
0c94c8d6 1006 if (buffer_intervals (current_buffer))
c669988b
KH
1007 {
1008 offset_intervals (current_buffer, GPT - nchars, nchars);
77c7bcb1 1009 graft_intervals_into_buffer (NULL, GPT - nchars, nchars,
c669988b
KH
1010 current_buffer, 0);
1011 }
8f924df7
KH
1012
1013 if (GPT - nchars < PT)
1014 adjust_point (nchars, nbytes);
1015
e2688e4a 1016 check_markers ();
b45433b3 1017}
3be11131
RS
1018\f
1019/* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
ef29f213
KH
1020 current buffer. If the text in BUF has properties, they are absorbed
1021 into the current buffer.
1022
1023 It does not work to use `insert' for this, because a malloc could happen
72af86bd 1024 and relocate BUF's text before the copy happens. */
ef29f213
KH
1025
1026void
ae19ba7c 1027insert_from_buffer (struct buffer *buf,
a08d4ba7 1028 ptrdiff_t charpos, ptrdiff_t nchars, bool inherit)
ef29f213 1029{
d311d28c 1030 ptrdiff_t opoint = PT;
3be11131 1031
62b82678
RS
1032 insert_from_buffer_1 (buf, charpos, nchars, inherit);
1033 signal_after_change (opoint, 0, PT - opoint);
0ef71121 1034 update_compositions (opoint, PT, CHECK_BORDER);
ef29f213
KH
1035}
1036
1037static void
ae19ba7c 1038insert_from_buffer_1 (struct buffer *buf,
a08d4ba7 1039 ptrdiff_t from, ptrdiff_t nchars, bool inherit)
ef29f213 1040{
d311d28c
PE
1041 ptrdiff_t chunk, chunk_expanded;
1042 ptrdiff_t from_byte = buf_charpos_to_bytepos (buf, from);
1043 ptrdiff_t to_byte = buf_charpos_to_bytepos (buf, from + nchars);
1044 ptrdiff_t incoming_nbytes = to_byte - from_byte;
1045 ptrdiff_t outgoing_nbytes = incoming_nbytes;
ce97a2d7 1046 INTERVAL intervals;
2b083808
RS
1047
1048 /* Make OUTGOING_NBYTES describe the text
1049 as it will be inserted in this buffer. */
1050
4b4deea2 1051 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
2b083808 1052 outgoing_nbytes = nchars;
4b4deea2 1053 else if (NILP (BVAR (buf, enable_multibyte_characters)))
4468c4f1 1054 {
d311d28c
PE
1055 ptrdiff_t outgoing_before_gap = 0;
1056 ptrdiff_t outgoing_after_gap = 0;
ef29f213 1057
4468c4f1
KH
1058 if (from < BUF_GPT (buf))
1059 {
1060 chunk = BUF_GPT_BYTE (buf) - from_byte;
1061 if (chunk > incoming_nbytes)
1062 chunk = incoming_nbytes;
1063 outgoing_before_gap
1064 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf, from_byte),
1065 chunk);
1066 }
1067 else
1068 chunk = 0;
1069
1070 if (chunk < incoming_nbytes)
1071 outgoing_after_gap
177c0ea7 1072 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf,
4468c4f1
KH
1073 from_byte + chunk),
1074 incoming_nbytes - chunk);
1075
1076 outgoing_nbytes = outgoing_before_gap + outgoing_after_gap;
1077 }
177c0ea7 1078
35d63725
RS
1079 /* Do this before moving and increasing the gap,
1080 because the before-change hooks might move the gap
1081 or make it smaller. */
d206af14 1082 prepare_to_modify_buffer (PT, PT, NULL);
ef29f213
KH
1083
1084 if (PT != GPT)
3be11131 1085 move_gap_both (PT, PT_BYTE);
2b083808
RS
1086 if (GAP_SIZE < outgoing_nbytes)
1087 make_gap (outgoing_nbytes - GAP_SIZE);
ef29f213 1088
3be11131 1089 if (from < BUF_GPT (buf))
ef29f213 1090 {
3be11131 1091 chunk = BUF_GPT_BYTE (buf) - from_byte;
2b083808
RS
1092 if (chunk > incoming_nbytes)
1093 chunk = incoming_nbytes;
4468c4f1
KH
1094 /* Record number of output bytes, so we know where
1095 to put the output from the second copy_text. */
1096 chunk_expanded
1097 = copy_text (BUF_BYTE_ADDRESS (buf, from_byte),
1098 GPT_ADDR, chunk,
4b4deea2
TT
1099 ! NILP (BVAR (buf, enable_multibyte_characters)),
1100 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
ef29f213
KH
1101 }
1102 else
4468c4f1
KH
1103 chunk_expanded = chunk = 0;
1104
2b083808
RS
1105 if (chunk < incoming_nbytes)
1106 copy_text (BUF_BYTE_ADDRESS (buf, from_byte + chunk),
4468c4f1 1107 GPT_ADDR + chunk_expanded, incoming_nbytes - chunk,
4b4deea2
TT
1108 ! NILP (BVAR (buf, enable_multibyte_characters)),
1109 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
ef29f213 1110
b16afa45 1111#ifdef BYTE_COMBINING_DEBUG
432f78d2
RS
1112 /* We have copied text into the gap, but we have not altered
1113 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1114 to these functions and get the same results as we would
1f90a790 1115 have got earlier on. Meanwhile, GPT_ADDR does point to
432f78d2 1116 the text that has been stored by copy_text. */
b16afa45
KH
1117 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1118 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1088b922 1119 emacs_abort ();
b16afa45 1120#endif
432f78d2 1121
b16afa45 1122 record_insert (PT, nchars);
432f78d2 1123 MODIFF++;
3e145152 1124 CHARS_MODIFF = MODIFF;
432f78d2 1125
2b083808 1126 GAP_SIZE -= outgoing_nbytes;
1f90a790
RS
1127 GPT += nchars;
1128 ZV += nchars;
1129 Z += nchars;
2b083808
RS
1130 GPT_BYTE += outgoing_nbytes;
1131 ZV_BYTE += outgoing_nbytes;
1132 Z_BYTE += outgoing_nbytes;
469ff680 1133 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1f90a790 1134
e2688e4a 1135 eassert (GPT <= GPT_BYTE);
1f90a790 1136
9dde4e0c
KS
1137 /* The insert may have been in the unchanged region, so check again. */
1138 if (Z - GPT < END_UNCHANGED)
1139 END_UNCHANGED = Z - GPT;
1140
1f90a790
RS
1141 adjust_overlays_for_insert (PT, nchars);
1142 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
432f78d2 1143 PT_BYTE + outgoing_nbytes,
b16afa45 1144 0);
ce97a2d7 1145
2f294edf 1146 offset_intervals (current_buffer, PT, nchars);
ce97a2d7 1147
b16afa45 1148 /* Get the intervals for the part of the string we are inserting. */
0c94c8d6 1149 intervals = buffer_intervals (buf);
f1a6b216 1150 if (nchars < BUF_Z (buf) - BUF_BEG (buf))
06d8227a
GM
1151 {
1152 if (buf == current_buffer && PT <= from)
1153 from += nchars;
1154 intervals = copy_intervals (intervals, from, nchars);
1155 }
177c0ea7 1156
ce97a2d7 1157 /* Insert those intervals. */
1f90a790 1158 graft_intervals_into_buffer (intervals, PT, nchars, current_buffer, inherit);
ce97a2d7 1159
b16afa45 1160 adjust_point (nchars, outgoing_nbytes);
b45433b3
JB
1161}
1162\f
652838b5
KH
1163/* Record undo information and adjust markers and position keepers for
1164 a replacement of a text PREV_TEXT at FROM to a new text of LEN
1165 chars (LEN_BYTE bytes) which resides in the gap just after
1166 GPT_ADDR.
1167
1168 PREV_TEXT nil means the new text was just inserted. */
2d9eea44 1169
77382fcc 1170static void
d311d28c
PE
1171adjust_after_replace (ptrdiff_t from, ptrdiff_t from_byte,
1172 Lisp_Object prev_text, ptrdiff_t len, ptrdiff_t len_byte)
1e9c7b7d 1173{
d311d28c 1174 ptrdiff_t nchars_del = 0, nbytes_del = 0;
61415a25 1175
b16afa45
KH
1176#ifdef BYTE_COMBINING_DEBUG
1177 if (count_combining_before (GPT_ADDR, len_byte, from, from_byte)
1178 || count_combining_after (GPT_ADDR, len_byte, from, from_byte))
1088b922 1179 emacs_abort ();
b16afa45
KH
1180#endif
1181
828f1ed3
KH
1182 if (STRINGP (prev_text))
1183 {
d5db4077
KR
1184 nchars_del = SCHARS (prev_text);
1185 nbytes_del = SBYTES (prev_text);
828f1ed3
KH
1186 }
1187
61415a25
KH
1188 /* Update various buffer positions for the new text. */
1189 GAP_SIZE -= len_byte;
1190 ZV += len; Z+= len;
1191 ZV_BYTE += len_byte; Z_BYTE += len_byte;
1192 GPT += len; GPT_BYTE += len_byte;
1193 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1194
adee4f91
KH
1195 if (nchars_del > 0)
1196 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1197 len, len_byte);
1198 else
1199 adjust_markers_for_insert (from, from_byte,
1200 from + len, from_byte + len_byte, 0);
b16afa45 1201
4b4deea2 1202 if (! EQ (BVAR (current_buffer, undo_list), Qt))
828f1ed3 1203 {
828f1ed3 1204 if (nchars_del > 0)
b16afa45
KH
1205 record_delete (from, prev_text);
1206 record_insert (from, len);
828f1ed3 1207 }
652838b5
KH
1208
1209 if (len > nchars_del)
1210 adjust_overlays_for_insert (from, len - nchars_del);
1211 else if (len < nchars_del)
1212 adjust_overlays_for_delete (from, nchars_del - len);
8707c1e5 1213
2f294edf 1214 offset_intervals (current_buffer, from, len - nchars_del);
61415a25 1215
b16afa45
KH
1216 if (from < PT)
1217 adjust_point (len - nchars_del, len_byte - nbytes_del);
61415a25 1218
9f3ede3c 1219 /* As byte combining will decrease Z, we must check this again. */
a50df55b
GM
1220 if (Z - GPT < END_UNCHANGED)
1221 END_UNCHANGED = Z - GPT;
9f3ede3c 1222
e2688e4a 1223 check_markers ();
60ea6052 1224
1e9c7b7d 1225 if (len == 0)
b58e3ca1
RS
1226 evaporate_overlays (from);
1227 MODIFF++;
3e145152 1228 CHARS_MODIFF = MODIFF;
b58e3ca1
RS
1229}
1230
652838b5
KH
1231/* Record undo information, adjust markers and position keepers for an
1232 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1233 text already exists in the current buffer but character length (TO
1234 - FROM) may be incorrect, the correct length is NEWLEN. */
1235
1236void
d311d28c
PE
1237adjust_after_insert (ptrdiff_t from, ptrdiff_t from_byte,
1238 ptrdiff_t to, ptrdiff_t to_byte, ptrdiff_t newlen)
652838b5 1239{
d311d28c 1240 ptrdiff_t len = to - from, len_byte = to_byte - from_byte;
652838b5
KH
1241
1242 if (GPT != to)
1243 move_gap_both (to, to_byte);
1244 GAP_SIZE += len_byte;
1245 GPT -= len; GPT_BYTE -= len_byte;
1246 ZV -= len; ZV_BYTE -= len_byte;
1247 Z -= len; Z_BYTE -= len_byte;
1248 adjust_after_replace (from, from_byte, Qnil, newlen, len_byte);
1249}
085db7de 1250\f
3be11131 1251/* Replace the text from character positions FROM to TO with NEW,
a08d4ba7 1252 If PREPARE, call prepare_to_modify_buffer.
c5ca4d3a
RS
1253 If INHERIT, the newly inserted text should inherit text properties
1254 from the surrounding non-deleted text. */
1255
1256/* Note that this does not yet handle markers quite right.
1257 Also it needs to record a single undo-entry that does a replacement
1258 rather than a separate delete and insert.
60aa777a
RS
1259 That way, undo will also handle markers properly.
1260
1261 But if MARKERS is 0, don't relocate markers. */
c5ca4d3a
RS
1262
1263void
d311d28c 1264replace_range (ptrdiff_t from, ptrdiff_t to, Lisp_Object new,
a08d4ba7 1265 bool prepare, bool inherit, bool markers)
c5ca4d3a 1266{
d311d28c
PE
1267 ptrdiff_t inschars = SCHARS (new);
1268 ptrdiff_t insbytes = SBYTES (new);
1269 ptrdiff_t from_byte, to_byte;
1270 ptrdiff_t nbytes_del, nchars_del;
c5ca4d3a 1271 struct gcpro gcpro1;
ce97a2d7 1272 INTERVAL intervals;
d311d28c 1273 ptrdiff_t outgoing_insbytes = insbytes;
23b20a70 1274 Lisp_Object deletion;
c5ca4d3a 1275
e2688e4a 1276 check_markers ();
60ea6052 1277
c5ca4d3a 1278 GCPRO1 (new);
6bbd7a29 1279 deletion = Qnil;
c5ca4d3a
RS
1280
1281 if (prepare)
1282 {
d311d28c 1283 ptrdiff_t range_length = to - from;
c5ca4d3a
RS
1284 prepare_to_modify_buffer (from, to, &from);
1285 to = from + range_length;
1286 }
1287
3be11131
RS
1288 UNGCPRO;
1289
b50a28de 1290 /* Make args be valid. */
c5ca4d3a
RS
1291 if (from < BEGV)
1292 from = BEGV;
1293 if (to > ZV)
1294 to = ZV;
1295
3be11131
RS
1296 from_byte = CHAR_TO_BYTE (from);
1297 to_byte = CHAR_TO_BYTE (to);
c5ca4d3a 1298
3be11131
RS
1299 nchars_del = to - from;
1300 nbytes_del = to_byte - from_byte;
1301
1302 if (nbytes_del <= 0 && insbytes == 0)
1303 return;
c5ca4d3a 1304
1f90a790
RS
1305 /* Make OUTGOING_INSBYTES describe the text
1306 as it will be inserted in this buffer. */
1307
4b4deea2 1308 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
1f90a790 1309 outgoing_insbytes = inschars;
2a1d8be0 1310 else if (! STRING_MULTIBYTE (new))
1f90a790 1311 outgoing_insbytes
d5db4077 1312 = count_size_as_multibyte (SDATA (new), insbytes);
1f90a790 1313
c5ca4d3a
RS
1314 GCPRO1 (new);
1315
1316 /* Make sure the gap is somewhere in or next to what we are deleting. */
1317 if (from > GPT)
3be11131 1318 gap_right (from, from_byte);
c5ca4d3a 1319 if (to < GPT)
3be11131 1320 gap_left (to, to_byte, 0);
c5ca4d3a 1321
039af53a
KH
1322 /* Even if we don't record for undo, we must keep the original text
1323 because we may have to recover it because of inappropriate byte
1324 combining. */
4b4deea2 1325 if (! EQ (BVAR (current_buffer, undo_list), Qt))
b16afa45 1326 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
c5ca4d3a 1327
3be11131
RS
1328 GAP_SIZE += nbytes_del;
1329 ZV -= nchars_del;
1330 Z -= nchars_del;
1331 ZV_BYTE -= nbytes_del;
1332 Z_BYTE -= nbytes_del;
c5ca4d3a 1333 GPT = from;
3be11131 1334 GPT_BYTE = from_byte;
017e09ac 1335 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
c5ca4d3a 1336
e2688e4a 1337 eassert (GPT <= GPT_BYTE);
3be11131 1338
a50df55b
GM
1339 if (GPT - BEG < BEG_UNCHANGED)
1340 BEG_UNCHANGED = GPT - BEG;
1341 if (Z - GPT < END_UNCHANGED)
1342 END_UNCHANGED = Z - GPT;
c5ca4d3a 1343
599a9e4f
PE
1344 if (GAP_SIZE < outgoing_insbytes)
1345 make_gap (outgoing_insbytes - GAP_SIZE);
c5ca4d3a 1346
1f90a790
RS
1347 /* Copy the string text into the buffer, perhaps converting
1348 between single-byte and multibyte. */
d5db4077 1349 copy_text (SDATA (new), GPT_ADDR, insbytes,
2a1d8be0 1350 STRING_MULTIBYTE (new),
4b4deea2 1351 ! NILP (BVAR (current_buffer, enable_multibyte_characters)));
1f90a790 1352
b16afa45 1353#ifdef BYTE_COMBINING_DEBUG
255c7dae
RS
1354 /* We have copied text into the gap, but we have not marked
1355 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1356 here, for both the previous text and the following text.
1357 Meanwhile, GPT_ADDR does point to
432f78d2 1358 the text that has been stored by copy_text. */
b16afa45
KH
1359 if (count_combining_before (GPT_ADDR, outgoing_insbytes, from, from_byte)
1360 || count_combining_after (GPT_ADDR, outgoing_insbytes, from, from_byte))
1088b922 1361 emacs_abort ();
b16afa45 1362#endif
432f78d2 1363
4b4deea2 1364 if (! EQ (BVAR (current_buffer, undo_list), Qt))
23b20a70 1365 {
bec1aca2
RS
1366 /* Record the insertion first, so that when we undo,
1367 the deletion will be undone first. Thus, undo
1368 will insert before deleting, and thus will keep
1369 the markers before and after this text separate. */
1370 record_insert (from + SCHARS (deletion), inschars);
b16afa45 1371 record_delete (from, deletion);
23b20a70 1372 }
c5ca4d3a 1373
1f90a790
RS
1374 GAP_SIZE -= outgoing_insbytes;
1375 GPT += inschars;
1376 ZV += inschars;
1377 Z += inschars;
1378 GPT_BYTE += outgoing_insbytes;
1379 ZV_BYTE += outgoing_insbytes;
1380 Z_BYTE += outgoing_insbytes;
c5ca4d3a
RS
1381 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1382
e2688e4a 1383 eassert (GPT <= GPT_BYTE);
3be11131 1384
048a0fbb 1385 /* Adjust markers for the deletion and the insertion. */
60aa777a 1386 if (markers)
048a0fbb
RS
1387 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1388 inschars, outgoing_insbytes);
c5ca4d3a 1389
2f294edf
DA
1390 /* Adjust the overlay center as needed. This must be done after
1391 adjusting the markers that bound the overlays. */
1392 adjust_overlays_for_delete (from, nchars_del);
1393 adjust_overlays_for_insert (from, inschars);
1394
255c7dae 1395 offset_intervals (current_buffer, from, inschars - nchars_del);
ce97a2d7
RS
1396
1397 /* Get the intervals for the part of the string we are inserting--
1398 not including the combined-before bytes. */
0c94c8d6 1399 intervals = string_intervals (new);
ce97a2d7 1400 /* Insert those intervals. */
1f90a790 1401 graft_intervals_into_buffer (intervals, from, inschars,
ce97a2d7 1402 current_buffer, inherit);
c5ca4d3a 1403
1f90a790
RS
1404 /* Relocate point as if it were a marker. */
1405 if (from < PT)
8bedbe9d 1406 adjust_point ((from + inschars - (PT < to ? PT : to)),
1f90a790 1407 (from_byte + outgoing_insbytes
8bedbe9d 1408 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
c5ca4d3a 1409
1f90a790
RS
1410 if (outgoing_insbytes == 0)
1411 evaporate_overlays (from);
93b882e8 1412
e2688e4a 1413 check_markers ();
60ea6052 1414
c5ca4d3a 1415 MODIFF++;
3e145152 1416 CHARS_MODIFF = MODIFF;
c5ca4d3a
RS
1417 UNGCPRO;
1418
255c7dae 1419 signal_after_change (from, nchars_del, GPT - from);
0ef71121 1420 update_compositions (from, GPT, CHECK_BORDER);
c5ca4d3a
RS
1421}
1422\f
085db7de
RS
1423/* Replace the text from character positions FROM to TO with
1424 the text in INS of length INSCHARS.
1425 Keep the text properties that applied to the old characters
1426 (extending them to all the new chars if there are more new chars).
1427
1428 Note that this does not yet handle markers quite right.
1429
a08d4ba7 1430 If MARKERS, relocate markers.
085db7de
RS
1431
1432 Unlike most functions at this level, never call
1433 prepare_to_modify_buffer and never call signal_after_change. */
1434
1435void
d311d28c
PE
1436replace_range_2 (ptrdiff_t from, ptrdiff_t from_byte,
1437 ptrdiff_t to, ptrdiff_t to_byte,
1438 const char *ins, ptrdiff_t inschars, ptrdiff_t insbytes,
a08d4ba7 1439 bool markers)
085db7de 1440{
d311d28c 1441 ptrdiff_t nbytes_del, nchars_del;
085db7de 1442
e2688e4a 1443 check_markers ();
085db7de
RS
1444
1445 nchars_del = to - from;
1446 nbytes_del = to_byte - from_byte;
1447
1448 if (nbytes_del <= 0 && insbytes == 0)
1449 return;
1450
085db7de
RS
1451 /* Make sure the gap is somewhere in or next to what we are deleting. */
1452 if (from > GPT)
1453 gap_right (from, from_byte);
1454 if (to < GPT)
1455 gap_left (to, to_byte, 0);
1456
1457 GAP_SIZE += nbytes_del;
1458 ZV -= nchars_del;
1459 Z -= nchars_del;
1460 ZV_BYTE -= nbytes_del;
1461 Z_BYTE -= nbytes_del;
1462 GPT = from;
1463 GPT_BYTE = from_byte;
1464 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1465
e2688e4a 1466 eassert (GPT <= GPT_BYTE);
085db7de
RS
1467
1468 if (GPT - BEG < BEG_UNCHANGED)
1469 BEG_UNCHANGED = GPT - BEG;
1470 if (Z - GPT < END_UNCHANGED)
1471 END_UNCHANGED = Z - GPT;
1472
1473 if (GAP_SIZE < insbytes)
1474 make_gap (insbytes - GAP_SIZE);
1475
1476 /* Copy the replacement text into the buffer. */
72af86bd 1477 memcpy (GPT_ADDR, ins, insbytes);
085db7de
RS
1478
1479#ifdef BYTE_COMBINING_DEBUG
1480 /* We have copied text into the gap, but we have not marked
1481 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1482 here, for both the previous text and the following text.
1483 Meanwhile, GPT_ADDR does point to
1484 the text that has been stored by copy_text. */
1485 if (count_combining_before (GPT_ADDR, insbytes, from, from_byte)
1486 || count_combining_after (GPT_ADDR, insbytes, from, from_byte))
1088b922 1487 emacs_abort ();
085db7de
RS
1488#endif
1489
1490 GAP_SIZE -= insbytes;
1491 GPT += inschars;
1492 ZV += inschars;
1493 Z += inschars;
1494 GPT_BYTE += insbytes;
1495 ZV_BYTE += insbytes;
1496 Z_BYTE += insbytes;
1497 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1498
e2688e4a 1499 eassert (GPT <= GPT_BYTE);
085db7de 1500
2f294edf
DA
1501 /* Adjust markers for the deletion and the insertion. */
1502 if (markers
1503 && ! (nchars_del == 1 && inschars == 1 && nbytes_del == insbytes))
1504 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1505 inschars, insbytes);
1506
085db7de
RS
1507 /* Adjust the overlay center as needed. This must be done after
1508 adjusting the markers that bound the overlays. */
1509 if (nchars_del != inschars)
1510 {
1511 adjust_overlays_for_insert (from, inschars);
1512 adjust_overlays_for_delete (from + inschars, nchars_del);
1513 }
1514
085db7de
RS
1515 offset_intervals (current_buffer, from, inschars - nchars_del);
1516
1517 /* Relocate point as if it were a marker. */
7077904e
KH
1518 if (from < PT && (nchars_del != inschars || nbytes_del != insbytes))
1519 {
1520 if (PT < to)
1521 /* PT was within the deleted text. Move it to FROM. */
1522 adjust_point (from - PT, from_byte - PT_BYTE);
1523 else
1524 adjust_point (inschars - nchars_del, insbytes - nbytes_del);
1525 }
085db7de
RS
1526
1527 if (insbytes == 0)
1528 evaporate_overlays (from);
1529
e2688e4a 1530 check_markers ();
085db7de
RS
1531
1532 MODIFF++;
3e145152 1533 CHARS_MODIFF = MODIFF;
085db7de
RS
1534}
1535\f
b45433b3 1536/* Delete characters in current buffer
3be11131
RS
1537 from FROM up to (but not including) TO.
1538 If TO comes before FROM, we delete nothing. */
b45433b3 1539
c660b094 1540void
d311d28c 1541del_range (ptrdiff_t from, ptrdiff_t to)
47c64747 1542{
7dae4502 1543 del_range_1 (from, to, 1, 0);
47c64747
RS
1544}
1545
7dae4502
SM
1546/* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1547 RET_STRING says to return the deleted text. */
47c64747 1548
7dae4502 1549Lisp_Object
a08d4ba7 1550del_range_1 (ptrdiff_t from, ptrdiff_t to, bool prepare, bool ret_string)
b45433b3 1551{
d311d28c 1552 ptrdiff_t from_byte, to_byte;
7dae4502
SM
1553 Lisp_Object deletion;
1554 struct gcpro gcpro1;
3be11131
RS
1555
1556 /* Make args be valid */
1557 if (from < BEGV)
1558 from = BEGV;
1559 if (to > ZV)
1560 to = ZV;
1561
1562 if (to <= from)
7dae4502 1563 return Qnil;
3be11131
RS
1564
1565 if (prepare)
1566 {
d311d28c 1567 ptrdiff_t range_length = to - from;
3be11131 1568 prepare_to_modify_buffer (from, to, &from);
0a411995 1569 to = min (ZV, from + range_length);
3be11131
RS
1570 }
1571
1572 from_byte = CHAR_TO_BYTE (from);
1573 to_byte = CHAR_TO_BYTE (to);
1574
7dae4502 1575 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
5e617bc2 1576 GCPRO1 (deletion);
9c36993a 1577 signal_after_change (from, to - from, 0);
233cc02d 1578 update_compositions (from, from, CHECK_HEAD);
7dae4502
SM
1579 UNGCPRO;
1580 return deletion;
3be11131
RS
1581}
1582
1583/* Like del_range_1 but args are byte positions, not char positions. */
1584
1585void
a08d4ba7 1586del_range_byte (ptrdiff_t from_byte, ptrdiff_t to_byte, bool prepare)
3be11131 1587{
d311d28c 1588 ptrdiff_t from, to;
3be11131
RS
1589
1590 /* Make args be valid */
1591 if (from_byte < BEGV_BYTE)
1592 from_byte = BEGV_BYTE;
1593 if (to_byte > ZV_BYTE)
1594 to_byte = ZV_BYTE;
1595
1596 if (to_byte <= from_byte)
1597 return;
1598
1599 from = BYTE_TO_CHAR (from_byte);
1600 to = BYTE_TO_CHAR (to_byte);
b45433b3 1601
d206af14
RS
1602 if (prepare)
1603 {
d311d28c
PE
1604 ptrdiff_t old_from = from, old_to = Z - to;
1605 ptrdiff_t range_length = to - from;
d206af14
RS
1606 prepare_to_modify_buffer (from, to, &from);
1607 to = from + range_length;
3be11131
RS
1608
1609 if (old_from != from)
1610 from_byte = CHAR_TO_BYTE (from);
0a411995
GM
1611 if (to > ZV)
1612 {
1613 to = ZV;
1614 to_byte = ZV_BYTE;
1615 }
1616 else if (old_to == Z - to)
3be11131 1617 to_byte = CHAR_TO_BYTE (to);
d206af14
RS
1618 }
1619
7dae4502 1620 del_range_2 (from, from_byte, to, to_byte, 0);
9c36993a 1621 signal_after_change (from, to - from, 0);
0ef71121 1622 update_compositions (from, from, CHECK_HEAD);
3be11131
RS
1623}
1624
1625/* Like del_range_1, but positions are specified both as charpos
1626 and bytepos. */
1627
1628void
d311d28c 1629del_range_both (ptrdiff_t from, ptrdiff_t from_byte,
a08d4ba7 1630 ptrdiff_t to, ptrdiff_t to_byte, bool prepare)
3be11131 1631{
b45433b3 1632 /* Make args be valid */
3be11131
RS
1633 if (from_byte < BEGV_BYTE)
1634 from_byte = BEGV_BYTE;
1635 if (to_byte > ZV_BYTE)
1636 to_byte = ZV_BYTE;
1637
1638 if (to_byte <= from_byte)
1639 return;
1640
b45433b3
JB
1641 if (from < BEGV)
1642 from = BEGV;
1643 if (to > ZV)
1644 to = ZV;
1645
3be11131
RS
1646 if (prepare)
1647 {
d311d28c
PE
1648 ptrdiff_t old_from = from, old_to = Z - to;
1649 ptrdiff_t range_length = to - from;
3be11131
RS
1650 prepare_to_modify_buffer (from, to, &from);
1651 to = from + range_length;
1652
1653 if (old_from != from)
1654 from_byte = CHAR_TO_BYTE (from);
0a411995
GM
1655 if (to > ZV)
1656 {
1657 to = ZV;
1658 to_byte = ZV_BYTE;
1659 }
1660 else if (old_to == Z - to)
3be11131
RS
1661 to_byte = CHAR_TO_BYTE (to);
1662 }
1663
7dae4502 1664 del_range_2 (from, from_byte, to, to_byte, 0);
9c36993a 1665 signal_after_change (from, to - from, 0);
0ef71121 1666 update_compositions (from, from, CHECK_HEAD);
3be11131
RS
1667}
1668
1669/* Delete a range of text, specified both as character positions
1670 and byte positions. FROM and TO are character positions,
7dae4502 1671 while FROM_BYTE and TO_BYTE are byte positions.
a08d4ba7 1672 If RET_STRING, the deleted area is returned as a string. */
3be11131 1673
7dae4502 1674Lisp_Object
d311d28c 1675del_range_2 (ptrdiff_t from, ptrdiff_t from_byte,
a08d4ba7 1676 ptrdiff_t to, ptrdiff_t to_byte, bool ret_string)
3be11131 1677{
a08d4ba7 1678 ptrdiff_t nbytes_del, nchars_del;
628cea90 1679 Lisp_Object deletion;
3be11131 1680
e2688e4a 1681 check_markers ();
60ea6052 1682
3be11131
RS
1683 nchars_del = to - from;
1684 nbytes_del = to_byte - from_byte;
b45433b3
JB
1685
1686 /* Make sure the gap is somewhere in or next to what we are deleting. */
1687 if (from > GPT)
3be11131 1688 gap_right (from, from_byte);
b45433b3 1689 if (to < GPT)
3be11131 1690 gap_left (to, to_byte, 0);
b45433b3 1691
b16afa45
KH
1692#ifdef BYTE_COMBINING_DEBUG
1693 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer, to_byte),
1694 Z_BYTE - to_byte, from, from_byte))
1088b922 1695 emacs_abort ();
b16afa45 1696#endif
628cea90 1697
4b4deea2 1698 if (ret_string || ! EQ (BVAR (current_buffer, undo_list), Qt))
b16afa45 1699 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
7dae4502
SM
1700 else
1701 deletion = Qnil;
1702
8948d317
RS
1703 /* Relocate all markers pointing into the new, larger gap
1704 to point at the end of the text before the gap.
3be11131
RS
1705 Do this before recording the deletion,
1706 so that undo handles this after reinserting the text. */
1707 adjust_markers_for_delete (from, from_byte, to, to_byte);
b16afa45 1708
4b4deea2 1709 if (! EQ (BVAR (current_buffer, undo_list), Qt))
b16afa45 1710 record_delete (from, deletion);
be09561e 1711 MODIFF++;
3e145152 1712 CHARS_MODIFF = MODIFF;
be09561e 1713
b45433b3 1714 /* Relocate point as if it were a marker. */
2bcaed71 1715 if (from < PT)
3be11131
RS
1716 adjust_point (from - (PT < to ? PT : to),
1717 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
b45433b3 1718
3be11131 1719 offset_intervals (current_buffer, from, - nchars_del);
16032db6 1720
adde4858 1721 /* Adjust the overlay center as needed. This must be done after
a7f38d28 1722 adjusting the markers that bound the overlays. */
e3a87305 1723 adjust_overlays_for_delete (from, nchars_del);
adde4858 1724
3be11131
RS
1725 GAP_SIZE += nbytes_del;
1726 ZV_BYTE -= nbytes_del;
1727 Z_BYTE -= nbytes_del;
1728 ZV -= nchars_del;
1729 Z -= nchars_del;
b45433b3 1730 GPT = from;
3be11131 1731 GPT_BYTE = from_byte;
b3b58c01
AS
1732 if (GAP_SIZE > 0 && !current_buffer->text->inhibit_shrinking)
1733 /* Put an anchor, unless called from decode_coding_object which
1734 needs to access the previous gap contents. */
1735 *(GPT_ADDR) = 0;
e3a87305 1736
e2688e4a 1737 eassert (GPT <= GPT_BYTE);
3be11131 1738
a50df55b
GM
1739 if (GPT - BEG < BEG_UNCHANGED)
1740 BEG_UNCHANGED = GPT - BEG;
1741 if (Z - GPT < END_UNCHANGED)
1742 END_UNCHANGED = Z - GPT;
b45433b3 1743
e2688e4a 1744 check_markers ();
60ea6052 1745
d386034e 1746 evaporate_overlays (from);
7dae4502
SM
1747
1748 return deletion;
b45433b3 1749}
20edc1c9
DA
1750
1751/* Call this if you're about to change the region of current buffer
1752 from character positions START to END. This checks the read-only
3be11131
RS
1753 properties of the region, calls the necessary modification hooks,
1754 and warns the next redisplay that it should pay attention to that
3e145152
CY
1755 area.
1756
a08d4ba7 1757 If PRESERVE_CHARS_MODIFF, do not update CHARS_MODIFF.
3e145152 1758 Otherwise set CHARS_MODIFF to the new value of MODIFF. */
3be11131 1759
c660b094 1760void
20edc1c9 1761modify_region_1 (ptrdiff_t start, ptrdiff_t end, bool preserve_chars_modiff)
b45433b3 1762{
d206af14 1763 prepare_to_modify_buffer (start, end, NULL);
b45433b3 1764
20edc1c9 1765 BUF_COMPUTE_UNCHANGED (current_buffer, start - 1, end);
83010cd6 1766
9fbf87cd 1767 if (MODIFF <= SAVE_MODIFF)
83010cd6 1768 record_first_change ();
b45433b3 1769 MODIFF++;
3e145152
CY
1770 if (! preserve_chars_modiff)
1771 CHARS_MODIFF = MODIFF;
04a759c8 1772
20edc1c9 1773 bset_point_before_scroll (current_buffer, Qnil);
b45433b3 1774}
20edc1c9 1775
3be11131
RS
1776/* Check that it is okay to modify the buffer between START and END,
1777 which are char positions.
1778
679194a6
JA
1779 Run the before-change-function, if any. If intervals are in use,
1780 verify that the text to be modified is not read-only, and call
d206af14
RS
1781 any modification properties the text may have.
1782
1783 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1784 by holding its value temporarily in a marker. */
b45433b3 1785
c660b094 1786void
d311d28c
PE
1787prepare_to_modify_buffer (ptrdiff_t start, ptrdiff_t end,
1788 ptrdiff_t *preserve_ptr)
b45433b3 1789{
234fb773
CY
1790 struct buffer *base_buffer;
1791
4b4deea2 1792 if (!NILP (BVAR (current_buffer, read_only)))
b45433b3
JB
1793 Fbarf_if_buffer_read_only ();
1794
c6afe371 1795 /* If we're modifying the buffer other than shown in a selected window,
5ad86e34 1796 let redisplay consider other windows if this buffer is visible. */
c6afe371 1797 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer
5ad86e34 1798 && buffer_window_count (current_buffer))
2e9f55fd
GM
1799 ++windows_or_buffers_changed;
1800
0c94c8d6 1801 if (buffer_intervals (current_buffer))
d206af14
RS
1802 {
1803 if (preserve_ptr)
1804 {
1805 Lisp_Object preserve_marker;
1806 struct gcpro gcpro1;
1807 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil);
1808 GCPRO1 (preserve_marker);
1809 verify_interval_modification (current_buffer, start, end);
1810 *preserve_ptr = marker_position (preserve_marker);
dab0b04d 1811 unchain_marker (XMARKER (preserve_marker));
d206af14
RS
1812 UNGCPRO;
1813 }
1814 else
1815 verify_interval_modification (current_buffer, start, end);
1816 }
b45433b3 1817
234fb773
CY
1818 /* For indirect buffers, use the base buffer to check clashes. */
1819 if (current_buffer->base_buffer != 0)
1820 base_buffer = current_buffer->base_buffer;
1821 else
1822 base_buffer = current_buffer;
1823
b45433b3 1824#ifdef CLASH_DETECTION
4b4deea2 1825 if (!NILP (BVAR (base_buffer, file_truename))
ab6c5c0c 1826 /* Make binding buffer-file-name to nil effective. */
4b4deea2 1827 && !NILP (BVAR (base_buffer, filename))
9fbf87cd 1828 && SAVE_MODIFF >= MODIFF)
4b4deea2 1829 lock_file (BVAR (base_buffer, file_truename));
b45433b3
JB
1830#else
1831 /* At least warn if this file has changed on disk since it was visited. */
4b4deea2 1832 if (!NILP (BVAR (base_buffer, filename))
9fbf87cd 1833 && SAVE_MODIFF >= MODIFF
d427b66a 1834 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
4b4deea2 1835 && !NILP (Ffile_exists_p (BVAR (base_buffer, filename))))
b45433b3 1836 call1 (intern ("ask-user-about-supersession-threat"),
4b4deea2 1837 BVAR (base_buffer,filename));
b45433b3
JB
1838#endif /* not CLASH_DETECTION */
1839
9852377f 1840 /* If `select-active-regions' is non-nil, save the region text. */
4b4deea2 1841 if (!NILP (BVAR (current_buffer, mark_active))
8b78d5e3 1842 && !inhibit_modification_hooks
4b4deea2 1843 && XMARKER (BVAR (current_buffer, mark))->buffer
7c23dd44
CY
1844 && NILP (Vsaved_region_selection)
1845 && (EQ (Vselect_active_regions, Qonly)
1846 ? EQ (CAR_SAFE (Vtransient_mark_mode), Qonly)
1847 : (!NILP (Vselect_active_regions)
1848 && !NILP (Vtransient_mark_mode))))
9852377f 1849 {
4c1acb95 1850 ptrdiff_t b = marker_position (BVAR (current_buffer, mark));
d311d28c 1851 ptrdiff_t e = PT;
746812d9
CY
1852 if (b < e)
1853 Vsaved_region_selection = make_buffer_string (b, e, 0);
1854 else if (b > e)
1855 Vsaved_region_selection = make_buffer_string (e, b, 0);
9852377f
CY
1856 }
1857
d206af14 1858 signal_before_change (start, end, preserve_ptr);
2f545eea 1859
56e1065e
JB
1860 if (current_buffer->newline_cache)
1861 invalidate_region_cache (current_buffer,
1862 current_buffer->newline_cache,
1863 start - BEG, Z - end);
1864 if (current_buffer->width_run_cache)
1865 invalidate_region_cache (current_buffer,
1866 current_buffer->width_run_cache,
1867 start - BEG, Z - end);
1868
2f545eea 1869 Vdeactivate_mark = Qt;
b45433b3
JB
1870}
1871\f
d206af14
RS
1872/* These macros work with an argument named `preserve_ptr'
1873 and a local variable named `preserve_marker'. */
1874
1875#define PRESERVE_VALUE \
1876 if (preserve_ptr && NILP (preserve_marker)) \
1877 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1878
1879#define RESTORE_VALUE \
1880 if (! NILP (preserve_marker)) \
1881 { \
1882 *preserve_ptr = marker_position (preserve_marker); \
dab0b04d 1883 unchain_marker (XMARKER (preserve_marker)); \
d206af14
RS
1884 }
1885
b86e0aaf
RS
1886#define PRESERVE_START_END \
1887 if (NILP (start_marker)) \
1888 start_marker = Fcopy_marker (start, Qnil); \
1889 if (NILP (end_marker)) \
1890 end_marker = Fcopy_marker (end, Qnil);
1891
1892#define FETCH_START \
1893 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1894
1895#define FETCH_END \
1896 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1897
4a181359 1898/* Set a variable to nil if an error occurred.
e6d3f090
SM
1899 Don't change the variable if there was no error.
1900 VAL is a cons-cell (VARIABLE . NO-ERROR-FLAG).
1901 VARIABLE is the variable to maybe set to nil.
1902 NO-ERROR-FLAG is nil if there was an error,
1903 anything else meaning no error (so this function does nothing). */
85876d07 1904static Lisp_Object
971de7fb 1905reset_var_on_error (Lisp_Object val)
4a181359
SM
1906{
1907 if (NILP (XCDR (val)))
1908 Fset (XCAR (val), Qnil);
1909 return Qnil;
1910}
1911
eb8c3be9 1912/* Signal a change to the buffer immediately before it happens.
d206af14
RS
1913 START_INT and END_INT are the bounds of the text to be changed.
1914
1915 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1916 by holding its value temporarily in a marker. */
b45433b3 1917
4889fc82 1918static void
d311d28c
PE
1919signal_before_change (ptrdiff_t start_int, ptrdiff_t end_int,
1920 ptrdiff_t *preserve_ptr)
b45433b3 1921{
fb4ee5cd 1922 Lisp_Object start, end;
b86e0aaf 1923 Lisp_Object start_marker, end_marker;
d206af14 1924 Lisp_Object preserve_marker;
b86e0aaf 1925 struct gcpro gcpro1, gcpro2, gcpro3;
d311d28c 1926 ptrdiff_t count = SPECPDL_INDEX ();
fb4ee5cd 1927
fd16a4c6
KH
1928 if (inhibit_modification_hooks)
1929 return;
1930
fb4ee5cd
RS
1931 start = make_number (start_int);
1932 end = make_number (end_int);
d206af14 1933 preserve_marker = Qnil;
b86e0aaf
RS
1934 start_marker = Qnil;
1935 end_marker = Qnil;
1936 GCPRO3 (preserve_marker, start_marker, end_marker);
fb4ee5cd 1937
4a181359
SM
1938 specbind (Qinhibit_modification_hooks, Qt);
1939
dee091a3
JD
1940 /* If buffer is unmodified, run a special hook for that case. The
1941 check for Vfirst_change_hook is just a minor optimization. */
9fbf87cd 1942 if (SAVE_MODIFF >= MODIFF
dee091a3 1943 && !NILP (Vfirst_change_hook))
d206af14
RS
1944 {
1945 PRESERVE_VALUE;
b86e0aaf 1946 PRESERVE_START_END;
dee091a3 1947 Frun_hooks (1, &Qfirst_change_hook);
d206af14 1948 }
dbc4e1c1 1949
3d1e2d9c 1950 /* Now run the before-change-functions if any. */
e45fb8bf
RS
1951 if (!NILP (Vbefore_change_functions))
1952 {
3d1e2d9c 1953 Lisp_Object args[3];
4a181359 1954 Lisp_Object rvoe_arg = Fcons (Qbefore_change_functions, Qnil);
3d1e2d9c 1955
d206af14 1956 PRESERVE_VALUE;
b86e0aaf 1957 PRESERVE_START_END;
d206af14 1958
4a181359
SM
1959 /* Mark before-change-functions to be reset to nil in case of error. */
1960 record_unwind_protect (reset_var_on_error, rvoe_arg);
3d1e2d9c
RS
1961
1962 /* Actually run the hook functions. */
1963 args[0] = Qbefore_change_functions;
b86e0aaf
RS
1964 args[1] = FETCH_START;
1965 args[2] = FETCH_END;
4a181359 1966 Frun_hook_with_args (3, args);
3d1e2d9c 1967
4a181359
SM
1968 /* There was no error: unarm the reset_on_error. */
1969 XSETCDR (rvoe_arg, Qt);
e45fb8bf 1970 }
d07c0804 1971
4cb3e6b3 1972 if (buffer_has_overlays ())
d206af14
RS
1973 {
1974 PRESERVE_VALUE;
b86e0aaf
RS
1975 report_overlay_modification (FETCH_START, FETCH_END, 0,
1976 FETCH_START, FETCH_END, Qnil);
d206af14
RS
1977 }
1978
b86e0aaf
RS
1979 if (! NILP (start_marker))
1980 free_marker (start_marker);
1981 if (! NILP (end_marker))
1982 free_marker (end_marker);
d206af14
RS
1983 RESTORE_VALUE;
1984 UNGCPRO;
4a181359
SM
1985
1986 unbind_to (count, Qnil);
b45433b3
JB
1987}
1988
eb8c3be9 1989/* Signal a change immediately after it happens.
3be11131 1990 CHARPOS is the character position of the start of the changed text.
b45433b3
JB
1991 LENDEL is the number of characters of the text before the change.
1992 (Not the whole buffer; just the part that was changed.)
8b09e5d0
RS
1993 LENINS is the number of characters in that part of the text
1994 after the change. */
b45433b3 1995
c660b094 1996void
d311d28c 1997signal_after_change (ptrdiff_t charpos, ptrdiff_t lendel, ptrdiff_t lenins)
b45433b3 1998{
d311d28c 1999 ptrdiff_t count = SPECPDL_INDEX ();
fd16a4c6
KH
2000 if (inhibit_modification_hooks)
2001 return;
2002
fb2e7d14
RS
2003 /* If we are deferring calls to the after-change functions
2004 and there are no before-change functions,
2005 just record the args that we were going to use. */
2006 if (! NILP (Vcombine_after_change_calls)
1675d086 2007 && NILP (Vbefore_change_functions)
4cb3e6b3 2008 && !buffer_has_overlays ())
fb2e7d14
RS
2009 {
2010 Lisp_Object elt;
2011
2012 if (!NILP (combine_after_change_list)
2013 && current_buffer != XBUFFER (combine_after_change_buffer))
2014 Fcombine_after_change_execute ();
2015
3be11131
RS
2016 elt = Fcons (make_number (charpos - BEG),
2017 Fcons (make_number (Z - (charpos - lendel + lenins)),
fb2e7d14
RS
2018 Fcons (make_number (lenins - lendel), Qnil)));
2019 combine_after_change_list
2020 = Fcons (elt, combine_after_change_list);
2021 combine_after_change_buffer = Fcurrent_buffer ();
2022
2023 return;
2024 }
2025
177c0ea7 2026 if (!NILP (combine_after_change_list))
fb2e7d14
RS
2027 Fcombine_after_change_execute ();
2028
4a181359
SM
2029 specbind (Qinhibit_modification_hooks, Qt);
2030
e45fb8bf
RS
2031 if (!NILP (Vafter_change_functions))
2032 {
3d1e2d9c 2033 Lisp_Object args[4];
4a181359
SM
2034 Lisp_Object rvoe_arg = Fcons (Qafter_change_functions, Qnil);
2035
2036 /* Mark after-change-functions to be reset to nil in case of error. */
2037 record_unwind_protect (reset_var_on_error, rvoe_arg);
3d1e2d9c
RS
2038
2039 /* Actually run the hook functions. */
2040 args[0] = Qafter_change_functions;
3be11131
RS
2041 XSETFASTINT (args[1], charpos);
2042 XSETFASTINT (args[2], charpos + lenins);
3d1e2d9c 2043 XSETFASTINT (args[3], lendel);
4a181359 2044 Frun_hook_with_args (4, args);
3d1e2d9c 2045
4a181359
SM
2046 /* There was no error: unarm the reset_on_error. */
2047 XSETCDR (rvoe_arg, Qt);
e45fb8bf 2048 }
d07c0804 2049
4cb3e6b3 2050 if (buffer_has_overlays ())
3be11131
RS
2051 report_overlay_modification (make_number (charpos),
2052 make_number (charpos + lenins),
d07c0804 2053 1,
3be11131
RS
2054 make_number (charpos),
2055 make_number (charpos + lenins),
d07c0804 2056 make_number (lendel));
c5ca0786
RS
2057
2058 /* After an insertion, call the text properties
2059 insert-behind-hooks or insert-in-front-hooks. */
2060 if (lendel == 0)
d6b81c0f
AS
2061 report_interval_modification (make_number (charpos),
2062 make_number (charpos + lenins));
4a181359
SM
2063
2064 unbind_to (count, Qnil);
b45433b3 2065}
fb2e7d14 2066
85876d07 2067static Lisp_Object
971de7fb 2068Fcombine_after_change_execute_1 (Lisp_Object val)
fb2e7d14
RS
2069{
2070 Vcombine_after_change_calls = val;
2071 return val;
2072}
2073
2074DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
335c5470 2075 Scombine_after_change_execute, 0, 0, 0,
9fc9a531 2076 doc: /* This function is for use internally in the function `combine-after-change-calls'. */)
5842a27b 2077 (void)
fb2e7d14 2078{
d311d28c
PE
2079 ptrdiff_t count = SPECPDL_INDEX ();
2080 ptrdiff_t beg, end, change;
2081 ptrdiff_t begpos, endpos;
fb2e7d14
RS
2082 Lisp_Object tail;
2083
101e446f
KH
2084 if (NILP (combine_after_change_list))
2085 return Qnil;
2086
c47a9ed1
CY
2087 /* It is rare for combine_after_change_buffer to be invalid, but
2088 possible. It can happen when combine-after-change-calls is
2089 non-nil, and insertion calls a file handler (e.g. through
2090 lock_file) which scribbles into a temp file -- cyd */
2091 if (!BUFFERP (combine_after_change_buffer)
e578f381 2092 || !BUFFER_LIVE_P (XBUFFER (combine_after_change_buffer)))
c47a9ed1
CY
2093 {
2094 combine_after_change_list = Qnil;
2095 return Qnil;
2096 }
2097
66322887 2098 record_unwind_current_buffer ();
fb2e7d14
RS
2099
2100 Fset_buffer (combine_after_change_buffer);
2101
2102 /* # chars unchanged at beginning of buffer. */
2103 beg = Z - BEG;
2104 /* # chars unchanged at end of buffer. */
2105 end = beg;
2106 /* Total amount of insertion (negative for deletion). */
2107 change = 0;
2108
2109 /* Scan the various individual changes,
2110 accumulating the range info in BEG, END and CHANGE. */
2111 for (tail = combine_after_change_list; CONSP (tail);
03699b14 2112 tail = XCDR (tail))
fb2e7d14 2113 {
e688a080 2114 Lisp_Object elt;
d311d28c 2115 ptrdiff_t thisbeg, thisend, thischange;
fb2e7d14
RS
2116
2117 /* Extract the info from the next element. */
03699b14 2118 elt = XCAR (tail);
fb2e7d14
RS
2119 if (! CONSP (elt))
2120 continue;
03699b14 2121 thisbeg = XINT (XCAR (elt));
fb2e7d14 2122
03699b14 2123 elt = XCDR (elt);
fb2e7d14
RS
2124 if (! CONSP (elt))
2125 continue;
03699b14 2126 thisend = XINT (XCAR (elt));
fb2e7d14 2127
03699b14 2128 elt = XCDR (elt);
fb2e7d14
RS
2129 if (! CONSP (elt))
2130 continue;
03699b14 2131 thischange = XINT (XCAR (elt));
fb2e7d14
RS
2132
2133 /* Merge this range into the accumulated range. */
2134 change += thischange;
2135 if (thisbeg < beg)
2136 beg = thisbeg;
2137 if (thisend < end)
2138 end = thisend;
2139 }
2140
2141 /* Get the current start and end positions of the range
2142 that was changed. */
2143 begpos = BEG + beg;
2144 endpos = Z - end;
177c0ea7 2145
fb2e7d14
RS
2146 /* We are about to handle these, so discard them. */
2147 combine_after_change_list = Qnil;
2148
2149 /* Now run the after-change functions for real.
2150 Turn off the flag that defers them. */
2151 record_unwind_protect (Fcombine_after_change_execute_1,
2152 Vcombine_after_change_calls);
2153 signal_after_change (begpos, endpos - begpos - change, endpos - begpos);
0ef71121 2154 update_compositions (begpos, endpos, CHECK_ALL);
fb2e7d14 2155
101e446f 2156 return unbind_to (count, Qnil);
fb2e7d14
RS
2157}
2158\f
dfcf069d 2159void
971de7fb 2160syms_of_insdel (void)
fb2e7d14
RS
2161{
2162 staticpro (&combine_after_change_list);
bf0bf758 2163 staticpro (&combine_after_change_buffer);
fb2e7d14 2164 combine_after_change_list = Qnil;
101e446f 2165 combine_after_change_buffer = Qnil;
fb2e7d14 2166
29208e82 2167 DEFVAR_LISP ("combine-after-change-calls", Vcombine_after_change_calls,
9fc9a531 2168 doc: /* Used internally by the function `combine-after-change-calls' macro. */);
fb2e7d14
RS
2169 Vcombine_after_change_calls = Qnil;
2170
29208e82 2171 DEFVAR_BOOL ("inhibit-modification-hooks", inhibit_modification_hooks,
335c5470
PJ
2172 doc: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2173This affects `before-change-functions' and `after-change-functions',
2174as well as hooks attached to text properties and overlays. */);
7baf49cf 2175 inhibit_modification_hooks = 0;
cd3520a4 2176 DEFSYM (Qinhibit_modification_hooks, "inhibit-modification-hooks");
7baf49cf 2177
fb2e7d14
RS
2178 defsubr (&Scombine_after_change_execute);
2179}