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