(browse-url-epiphany): Doc fix.
[emacs.git] / src / insdel.c
blob5becd5d9163917b476ee7a956e810355211eab07
1 /* Buffer insertion/deletion and gap motion for GNU Emacs.
2 Copyright (C) 1985, 86,93,94,95,97,98, 1999, 2000, 01, 2003
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 2, or (at your option)
10 any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include "lisp.h"
25 #include "intervals.h"
26 #include "buffer.h"
27 #include "charset.h"
28 #include "window.h"
29 #include "blockinput.h"
30 #include "region-cache.h"
32 #ifndef NULL
33 #define NULL 0
34 #endif
36 static void insert_from_string_1 P_ ((Lisp_Object, int, int, int, int, int, int));
37 static void insert_from_buffer_1 ();
38 static void gap_left P_ ((int, int, int));
39 static void gap_right P_ ((int, int));
40 static void adjust_markers_gap_motion P_ ((int, int, int));
41 static void adjust_markers_for_insert P_ ((int, int, int, int, int));
42 void adjust_markers_for_delete P_ ((int, int, int, int));
43 static void adjust_markers_for_replace P_ ((int, int, int, int, int, int));
44 static void adjust_point P_ ((int, int));
46 Lisp_Object Fcombine_after_change_execute ();
48 /* Non-nil means don't call the after-change-functions right away,
49 just record an element in Vcombine_after_change_calls_list. */
50 Lisp_Object Vcombine_after_change_calls;
52 /* List of elements of the form (BEG-UNCHANGED END-UNCHANGED CHANGE-AMOUNT)
53 describing changes which happened while combine_after_change_calls
54 was nonzero. We use this to decide how to call them
55 once the deferral ends.
57 In each element.
58 BEG-UNCHANGED is the number of chars before the changed range.
59 END-UNCHANGED is the number of chars after the changed range,
60 and CHANGE-AMOUNT is the number of characters inserted by the change
61 (negative for a deletion). */
62 Lisp_Object combine_after_change_list;
64 /* Buffer which combine_after_change_list is about. */
65 Lisp_Object combine_after_change_buffer;
67 Lisp_Object Qinhibit_modification_hooks;
70 /* Check all markers in the current buffer, looking for something invalid. */
72 static int check_markers_debug_flag;
74 #define CHECK_MARKERS() \
75 if (check_markers_debug_flag) \
76 check_markers (); \
77 else
79 void
80 check_markers ()
82 register struct Lisp_Marker *tail;
83 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
85 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
87 if (tail->buffer->text != current_buffer->text)
88 abort ();
89 if (tail->charpos > Z)
90 abort ();
91 if (tail->bytepos > Z_BYTE)
92 abort ();
93 if (multibyte && ! CHAR_HEAD_P (FETCH_BYTE (tail->bytepos)))
94 abort ();
98 /* Move gap to position CHARPOS.
99 Note that this can quit! */
101 void
102 move_gap (charpos)
103 int charpos;
105 move_gap_both (charpos, charpos_to_bytepos (charpos));
108 /* Move gap to byte position BYTEPOS, which is also char position CHARPOS.
109 Note that this can quit! */
111 void
112 move_gap_both (charpos, bytepos)
113 int charpos, bytepos;
115 if (bytepos < GPT_BYTE)
116 gap_left (charpos, bytepos, 0);
117 else if (bytepos > GPT_BYTE)
118 gap_right (charpos, bytepos);
121 /* Move the gap to a position less than the current GPT.
122 BYTEPOS describes the new position as a byte position,
123 and CHARPOS is the corresponding char position.
124 If NEWGAP is nonzero, then don't update beg_unchanged and end_unchanged. */
126 static void
127 gap_left (charpos, bytepos, newgap)
128 register int charpos, bytepos;
129 int newgap;
131 register unsigned char *to, *from;
132 register int i;
133 int new_s1;
135 if (!newgap)
136 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
138 i = GPT_BYTE;
139 to = GAP_END_ADDR;
140 from = GPT_ADDR;
141 new_s1 = GPT_BYTE;
143 /* Now copy the characters. To move the gap down,
144 copy characters up. */
146 while (1)
148 /* I gets number of characters left to copy. */
149 i = new_s1 - bytepos;
150 if (i == 0)
151 break;
152 /* If a quit is requested, stop copying now.
153 Change BYTEPOS to be where we have actually moved the gap to. */
154 if (QUITP)
156 bytepos = new_s1;
157 charpos = BYTE_TO_CHAR (bytepos);
158 break;
160 /* Move at most 32000 chars before checking again for a quit. */
161 if (i > 32000)
162 i = 32000;
163 #ifdef GAP_USE_BCOPY
164 if (i >= 128
165 /* bcopy is safe if the two areas of memory do not overlap
166 or on systems where bcopy is always safe for moving upward. */
167 && (BCOPY_UPWARD_SAFE
168 || to - from >= 128))
170 /* If overlap is not safe, avoid it by not moving too many
171 characters at once. */
172 if (!BCOPY_UPWARD_SAFE && i > to - from)
173 i = to - from;
174 new_s1 -= i;
175 from -= i, to -= i;
176 bcopy (from, to, i);
178 else
179 #endif
181 new_s1 -= i;
182 while (--i >= 0)
183 *--to = *--from;
187 /* Adjust markers, and buffer data structure, to put the gap at BYTEPOS.
188 BYTEPOS is where the loop above stopped, which may be what was specified
189 or may be where a quit was detected. */
190 adjust_markers_gap_motion (bytepos, GPT_BYTE, GAP_SIZE);
191 GPT_BYTE = bytepos;
192 GPT = charpos;
193 if (bytepos < charpos)
194 abort ();
195 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
196 QUIT;
199 /* Move the gap to a position greater than than the current GPT.
200 BYTEPOS describes the new position as a byte position,
201 and CHARPOS is the corresponding char position. */
203 static void
204 gap_right (charpos, bytepos)
205 register int charpos, bytepos;
207 register unsigned char *to, *from;
208 register int i;
209 int new_s1;
211 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
213 i = GPT_BYTE;
214 from = GAP_END_ADDR;
215 to = GPT_ADDR;
216 new_s1 = GPT_BYTE;
218 /* Now copy the characters. To move the gap up,
219 copy characters down. */
221 while (1)
223 /* I gets number of characters left to copy. */
224 i = bytepos - new_s1;
225 if (i == 0)
226 break;
227 /* If a quit is requested, stop copying now.
228 Change BYTEPOS to be where we have actually moved the gap to. */
229 if (QUITP)
231 bytepos = new_s1;
232 charpos = BYTE_TO_CHAR (bytepos);
233 break;
235 /* Move at most 32000 chars before checking again for a quit. */
236 if (i > 32000)
237 i = 32000;
238 #ifdef GAP_USE_BCOPY
239 if (i >= 128
240 /* bcopy is safe if the two areas of memory do not overlap
241 or on systems where bcopy is always safe for moving downward. */
242 && (BCOPY_DOWNWARD_SAFE
243 || from - to >= 128))
245 /* If overlap is not safe, avoid it by not moving too many
246 characters at once. */
247 if (!BCOPY_DOWNWARD_SAFE && i > from - to)
248 i = from - to;
249 new_s1 += i;
250 bcopy (from, to, i);
251 from += i, to += i;
253 else
254 #endif
256 new_s1 += i;
257 while (--i >= 0)
258 *to++ = *from++;
262 adjust_markers_gap_motion (GPT_BYTE + GAP_SIZE, bytepos + GAP_SIZE,
263 - GAP_SIZE);
264 GPT = charpos;
265 GPT_BYTE = bytepos;
266 if (bytepos < charpos)
267 abort ();
268 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
269 QUIT;
272 /* Add AMOUNT to the byte position of every marker in the current buffer
273 whose current byte position is between FROM (exclusive) and TO (inclusive).
275 Also, any markers past the outside of that interval, in the direction
276 of adjustment, are first moved back to the near end of the interval
277 and then adjusted by AMOUNT.
279 When the latter adjustment is done, if AMOUNT is negative,
280 we record the adjustment for undo. (This case happens only for
281 deletion.)
283 The markers' character positions are not altered,
284 because gap motion does not affect character positions. */
286 int adjust_markers_test;
288 static void
289 adjust_markers_gap_motion (from, to, amount)
290 register int from, to, amount;
292 /* Now that a marker has a bytepos, not counting the gap,
293 nothing needs to be done here. */
294 #if 0
295 Lisp_Object marker;
296 register struct Lisp_Marker *m;
297 register int mpos;
299 marker = BUF_MARKERS (current_buffer);
301 while (!NILP (marker))
303 m = XMARKER (marker);
304 mpos = m->bytepos;
305 if (amount > 0)
307 if (mpos > to && mpos < to + amount)
309 if (adjust_markers_test)
310 abort ();
311 mpos = to + amount;
314 else
316 /* Here's the case where a marker is inside text being deleted.
317 AMOUNT can be negative for gap motion, too,
318 but then this range contains no markers. */
319 if (mpos > from + amount && mpos <= from)
321 if (adjust_markers_test)
322 abort ();
323 mpos = from + amount;
326 if (mpos > from && mpos <= to)
327 mpos += amount;
328 m->bufpos = mpos;
329 marker = m->chain;
331 #endif
334 /* Adjust all markers for a deletion
335 whose range in bytes is FROM_BYTE to TO_BYTE.
336 The range in charpos is FROM to TO.
338 This function assumes that the gap is adjacent to
339 or inside of the range being deleted. */
341 void
342 adjust_markers_for_delete (from, from_byte, to, to_byte)
343 register int from, from_byte, to, to_byte;
345 Lisp_Object marker;
346 register struct Lisp_Marker *m;
347 register int charpos;
349 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
351 charpos = m->charpos;
353 if (charpos > Z)
354 abort ();
356 /* If the marker is after the deletion,
357 relocate by number of chars / bytes deleted. */
358 if (charpos > to)
360 m->charpos -= to - from;
361 m->bytepos -= to_byte - from_byte;
363 /* Here's the case where a marker is inside text being deleted. */
364 else if (charpos > from)
366 if (! m->insertion_type)
367 { /* Normal markers will end up at the beginning of the
368 re-inserted text after undoing a deletion, and must be
369 adjusted to move them to the correct place. */
370 XSETMISC (marker, m);
371 record_marker_adjustment (marker, from - charpos);
373 else if (charpos < to)
374 { /* Before-insertion markers will automatically move forward
375 upon re-inserting the deleted text, so we have to arrange
376 for them to move backward to the correct position. */
377 XSETMISC (marker, m);
378 record_marker_adjustment (marker, charpos - to);
380 m->charpos = from;
381 m->bytepos = from_byte;
383 /* Here's the case where a before-insertion marker is immediately
384 before the deleted region. */
385 else if (charpos == from && m->insertion_type)
387 /* Undoing the change uses normal insertion, which will
388 incorrectly make MARKER move forward, so we arrange for it
389 to then move backward to the correct place at the beginning
390 of the deleted region. */
391 XSETMISC (marker, m);
392 record_marker_adjustment (marker, to - from);
398 /* Adjust markers for an insertion that stretches from FROM / FROM_BYTE
399 to TO / TO_BYTE. We have to relocate the charpos of every marker
400 that points after the insertion (but not their bytepos).
402 When a marker points at the insertion point,
403 we advance it if either its insertion-type is t
404 or BEFORE_MARKERS is true. */
406 static void
407 adjust_markers_for_insert (from, from_byte, to, to_byte, before_markers)
408 register int from, from_byte, to, to_byte;
409 int before_markers;
411 struct Lisp_Marker *m;
412 int adjusted = 0;
413 int nchars = to - from;
414 int nbytes = to_byte - from_byte;
416 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
418 /* In a single-byte buffer, a marker's two positions must be
419 equal. */
420 if (Z == Z_BYTE)
422 if (m->charpos != m->bytepos)
423 abort ();
426 if (m->bytepos == from_byte)
428 if (m->insertion_type || before_markers)
430 m->bytepos = to_byte;
431 m->charpos = to;
432 if (m->insertion_type)
433 adjusted = 1;
436 else if (m->bytepos > from_byte)
438 m->bytepos += nbytes;
439 m->charpos += nchars;
443 /* Adjusting only markers whose insertion-type is t may result in
444 disordered overlays in the slot `overlays_before'. */
445 if (adjusted)
446 fix_overlays_before (current_buffer, from, to);
449 /* Adjust point for an insertion of NBYTES bytes, which are NCHARS characters.
451 This is used only when the value of point changes due to an insert
452 or delete; it does not represent a conceptual change in point as a
453 marker. In particular, point is not crossing any interval
454 boundaries, so there's no need to use the usual SET_PT macro. In
455 fact it would be incorrect to do so, because either the old or the
456 new value of point is out of sync with the current set of
457 intervals. */
459 static void
460 adjust_point (nchars, nbytes)
461 int nchars, nbytes;
463 BUF_PT (current_buffer) += nchars;
464 BUF_PT_BYTE (current_buffer) += nbytes;
466 /* In a single-byte buffer, the two positions must be equal. */
467 if (ZV == ZV_BYTE
468 && PT != PT_BYTE)
469 abort ();
472 /* Adjust markers for a replacement of a text at FROM (FROM_BYTE) of
473 length OLD_CHARS (OLD_BYTES) to a new text of length NEW_CHARS
474 (NEW_BYTES). It is assumed that OLD_CHARS > 0, i.e., this is not
475 an insertion. */
477 static void
478 adjust_markers_for_replace (from, from_byte, old_chars, old_bytes,
479 new_chars, new_bytes)
480 int from, from_byte, old_chars, old_bytes, new_chars, new_bytes;
482 register struct Lisp_Marker *m;
483 int prev_to_byte = from_byte + old_bytes;
484 int diff_chars = new_chars - old_chars;
485 int diff_bytes = new_bytes - old_bytes;
487 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
489 if (m->bytepos >= prev_to_byte)
491 m->charpos += diff_chars;
492 m->bytepos += diff_bytes;
494 else if (m->bytepos > from_byte)
496 m->charpos = from;
497 m->bytepos = from_byte;
501 CHECK_MARKERS ();
505 /* Make the gap NBYTES_ADDED bytes longer. */
507 void
508 make_gap_larger (nbytes_added)
509 int nbytes_added;
511 Lisp_Object tem;
512 int real_gap_loc;
513 int real_gap_loc_byte;
514 int old_gap_size;
516 /* If we have to get more space, get enough to last a while. */
517 nbytes_added += 2000;
519 /* Don't allow a buffer size that won't fit in an int
520 even if it will fit in a Lisp integer.
521 That won't work because so many places use `int'.
523 Make sure we don't introduce overflows in the calculation. */
525 if (Z_BYTE - BEG_BYTE + GAP_SIZE
526 >= (((EMACS_INT) 1 << (min (VALBITS, BITS_PER_INT) - 1)) - 1
527 - nbytes_added))
528 error ("Buffer exceeds maximum size");
530 enlarge_buffer_text (current_buffer, nbytes_added);
532 /* Prevent quitting in move_gap. */
533 tem = Vinhibit_quit;
534 Vinhibit_quit = Qt;
536 real_gap_loc = GPT;
537 real_gap_loc_byte = GPT_BYTE;
538 old_gap_size = GAP_SIZE;
540 /* Call the newly allocated space a gap at the end of the whole space. */
541 GPT = Z + GAP_SIZE;
542 GPT_BYTE = Z_BYTE + GAP_SIZE;
543 GAP_SIZE = nbytes_added;
545 /* Move the new gap down to be consecutive with the end of the old one.
546 This adjusts the markers properly too. */
547 gap_left (real_gap_loc + old_gap_size, real_gap_loc_byte + old_gap_size, 1);
549 /* Now combine the two into one large gap. */
550 GAP_SIZE += old_gap_size;
551 GPT = real_gap_loc;
552 GPT_BYTE = real_gap_loc_byte;
554 /* Put an anchor. */
555 *(Z_ADDR) = 0;
557 Vinhibit_quit = tem;
561 /* Make the gap NBYTES_REMOVED bytes shorter. */
563 void
564 make_gap_smaller (nbytes_removed)
565 int nbytes_removed;
567 Lisp_Object tem;
568 int real_gap_loc;
569 int real_gap_loc_byte;
570 int real_Z;
571 int real_Z_byte;
572 int real_beg_unchanged;
573 int new_gap_size;
575 /* Make sure the gap is at least 20 bytes. */
576 if (GAP_SIZE - nbytes_removed < 20)
577 nbytes_removed = GAP_SIZE - 20;
579 /* Prevent quitting in move_gap. */
580 tem = Vinhibit_quit;
581 Vinhibit_quit = Qt;
583 real_gap_loc = GPT;
584 real_gap_loc_byte = GPT_BYTE;
585 new_gap_size = GAP_SIZE - nbytes_removed;
586 real_Z = Z;
587 real_Z_byte = Z_BYTE;
588 real_beg_unchanged = BEG_UNCHANGED;
590 /* Pretend that the last unwanted part of the gap is the entire gap,
591 and that the first desired part of the gap is part of the buffer
592 text. */
593 bzero (GPT_ADDR, new_gap_size);
594 GPT += new_gap_size;
595 GPT_BYTE += new_gap_size;
596 Z += new_gap_size;
597 Z_BYTE += new_gap_size;
598 GAP_SIZE = nbytes_removed;
600 /* Move the unwanted pretend gap to the end of the buffer. This
601 adjusts the markers properly too. */
602 gap_right (Z, Z_BYTE);
604 enlarge_buffer_text (current_buffer, -nbytes_removed);
606 /* Now restore the desired gap. */
607 GAP_SIZE = new_gap_size;
608 GPT = real_gap_loc;
609 GPT_BYTE = real_gap_loc_byte;
610 Z = real_Z;
611 Z_BYTE = real_Z_byte;
612 BEG_UNCHANGED = real_beg_unchanged;
614 /* Put an anchor. */
615 *(Z_ADDR) = 0;
617 Vinhibit_quit = tem;
620 void
621 make_gap (nbytes_added)
622 int nbytes_added;
624 if (nbytes_added >= 0)
625 make_gap_larger (nbytes_added);
626 #if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
627 else
628 make_gap_smaller (-nbytes_added);
629 #endif
632 /* Copy NBYTES bytes of text from FROM_ADDR to TO_ADDR.
633 FROM_MULTIBYTE says whether the incoming text is multibyte.
634 TO_MULTIBYTE says whether to store the text as multibyte.
635 If FROM_MULTIBYTE != TO_MULTIBYTE, we convert.
637 Return the number of bytes stored at TO_ADDR. */
640 copy_text (from_addr, to_addr, nbytes,
641 from_multibyte, to_multibyte)
642 const unsigned char *from_addr;
643 unsigned char *to_addr;
644 int nbytes;
645 int from_multibyte, to_multibyte;
647 if (from_multibyte == to_multibyte)
649 bcopy (from_addr, to_addr, nbytes);
650 return nbytes;
652 else if (from_multibyte)
654 int nchars = 0;
655 int bytes_left = nbytes;
656 Lisp_Object tbl = Qnil;
658 /* We set the variable tbl to the reverse table of
659 Vnonascii_translation_table in advance. */
660 if (CHAR_TABLE_P (Vnonascii_translation_table))
662 tbl = Fchar_table_extra_slot (Vnonascii_translation_table,
663 make_number (0));
664 if (!CHAR_TABLE_P (tbl))
665 tbl = Qnil;
668 /* Convert multibyte to single byte. */
669 while (bytes_left > 0)
671 int thislen, c;
672 c = STRING_CHAR_AND_LENGTH (from_addr, bytes_left, thislen);
673 if (!SINGLE_BYTE_CHAR_P (c))
674 c = multibyte_char_to_unibyte (c, tbl);
675 *to_addr++ = c;
676 from_addr += thislen;
677 bytes_left -= thislen;
678 nchars++;
680 return nchars;
682 else
684 unsigned char *initial_to_addr = to_addr;
686 /* Convert single-byte to multibyte. */
687 while (nbytes > 0)
689 int c = *from_addr++;
691 if (c >= 0200)
693 c = unibyte_char_to_multibyte (c);
694 to_addr += CHAR_STRING (c, to_addr);
695 nbytes--;
697 else
698 /* Special case for speed. */
699 *to_addr++ = c, nbytes--;
701 return to_addr - initial_to_addr;
705 /* Return the number of bytes it would take
706 to convert some single-byte text to multibyte.
707 The single-byte text consists of NBYTES bytes at PTR. */
710 count_size_as_multibyte (ptr, nbytes)
711 const unsigned char *ptr;
712 int nbytes;
714 int i;
715 int outgoing_nbytes = 0;
717 for (i = 0; i < nbytes; i++)
719 unsigned int c = *ptr++;
721 if (c < 0200)
722 outgoing_nbytes++;
723 else
725 c = unibyte_char_to_multibyte (c);
726 outgoing_nbytes += CHAR_BYTES (c);
730 return outgoing_nbytes;
733 /* Insert a string of specified length before point.
734 This function judges multibyteness based on
735 enable_multibyte_characters in the current buffer;
736 it never converts between single-byte and multibyte.
738 DO NOT use this for the contents of a Lisp string or a Lisp buffer!
739 prepare_to_modify_buffer could relocate the text. */
741 void
742 insert (string, nbytes)
743 register const unsigned char *string;
744 register int nbytes;
746 if (nbytes > 0)
748 int opoint = PT;
749 insert_1 (string, nbytes, 0, 1, 0);
750 signal_after_change (opoint, 0, PT - opoint);
751 update_compositions (opoint, PT, CHECK_BORDER);
755 /* Likewise, but inherit text properties from neighboring characters. */
757 void
758 insert_and_inherit (string, nbytes)
759 register const unsigned char *string;
760 register int nbytes;
762 if (nbytes > 0)
764 int opoint = PT;
765 insert_1 (string, nbytes, 1, 1, 0);
766 signal_after_change (opoint, 0, PT - opoint);
767 update_compositions (opoint, PT, CHECK_BORDER);
771 /* Insert the character C before point. Do not inherit text properties. */
773 void
774 insert_char (c)
775 int c;
777 unsigned char str[MAX_MULTIBYTE_LENGTH];
778 int len;
780 if (! NILP (current_buffer->enable_multibyte_characters))
781 len = CHAR_STRING (c, str);
782 else
784 len = 1;
785 str[0] = c;
788 insert (str, len);
791 /* Insert the null-terminated string S before point. */
793 void
794 insert_string (s)
795 const char *s;
797 insert (s, strlen (s));
800 /* Like `insert' except that all markers pointing at the place where
801 the insertion happens are adjusted to point after it.
802 Don't use this function to insert part of a Lisp string,
803 since gc could happen and relocate it. */
805 void
806 insert_before_markers (string, nbytes)
807 const unsigned char *string;
808 register int nbytes;
810 if (nbytes > 0)
812 int opoint = PT;
814 insert_1 (string, nbytes, 0, 1, 1);
815 signal_after_change (opoint, 0, PT - opoint);
816 update_compositions (opoint, PT, CHECK_BORDER);
820 /* Likewise, but inherit text properties from neighboring characters. */
822 void
823 insert_before_markers_and_inherit (string, nbytes)
824 const unsigned char *string;
825 register int nbytes;
827 if (nbytes > 0)
829 int opoint = PT;
831 insert_1 (string, nbytes, 1, 1, 1);
832 signal_after_change (opoint, 0, PT - opoint);
833 update_compositions (opoint, PT, CHECK_BORDER);
837 /* Subroutine used by the insert functions above. */
839 void
840 insert_1 (string, nbytes, inherit, prepare, before_markers)
841 register const unsigned char *string;
842 register int nbytes;
843 int inherit, prepare, before_markers;
845 insert_1_both (string, chars_in_text (string, nbytes), nbytes,
846 inherit, prepare, before_markers);
850 #ifdef BYTE_COMBINING_DEBUG
852 /* See if the bytes before POS/POS_BYTE combine with bytes
853 at the start of STRING to form a single character.
854 If so, return the number of bytes at the start of STRING
855 which combine in this way. Otherwise, return 0. */
858 count_combining_before (string, length, pos, pos_byte)
859 const unsigned char *string;
860 int length;
861 int pos, pos_byte;
863 int len, combining_bytes;
864 const unsigned char *p;
866 if (NILP (current_buffer->enable_multibyte_characters))
867 return 0;
869 /* At first, we can exclude the following cases:
870 (1) STRING[0] can't be a following byte of multibyte sequence.
871 (2) POS is the start of the current buffer.
872 (3) A character before POS is not a multibyte character. */
873 if (length == 0 || CHAR_HEAD_P (*string)) /* case (1) */
874 return 0;
875 if (pos_byte == BEG_BYTE) /* case (2) */
876 return 0;
877 len = 1;
878 p = BYTE_POS_ADDR (pos_byte - 1);
879 while (! CHAR_HEAD_P (*p)) p--, len++;
880 if (! BASE_LEADING_CODE_P (*p)) /* case (3) */
881 return 0;
883 combining_bytes = BYTES_BY_CHAR_HEAD (*p) - len;
884 if (combining_bytes <= 0)
885 /* The character preceding POS is, complete and no room for
886 combining bytes (combining_bytes == 0), or an independent 8-bit
887 character (combining_bytes < 0). */
888 return 0;
890 /* We have a combination situation. Count the bytes at STRING that
891 may combine. */
892 p = string + 1;
893 while (!CHAR_HEAD_P (*p) && p < string + length)
894 p++;
896 return (combining_bytes < p - string ? combining_bytes : p - string);
899 /* See if the bytes after POS/POS_BYTE combine with bytes
900 at the end of STRING to form a single character.
901 If so, return the number of bytes after POS/POS_BYTE
902 which combine in this way. Otherwise, return 0. */
905 count_combining_after (string, length, pos, pos_byte)
906 const unsigned char *string;
907 int length;
908 int pos, pos_byte;
910 int opos_byte = pos_byte;
911 int i;
912 int bytes;
913 unsigned char *bufp;
915 if (NILP (current_buffer->enable_multibyte_characters))
916 return 0;
918 /* At first, we can exclude the following cases:
919 (1) The last byte of STRING is an ASCII.
920 (2) POS is the last of the current buffer.
921 (3) A character at POS can't be a following byte of multibyte
922 character. */
923 if (length > 0 && ASCII_BYTE_P (string[length - 1])) /* case (1) */
924 return 0;
925 if (pos_byte == Z_BYTE) /* case (2) */
926 return 0;
927 bufp = BYTE_POS_ADDR (pos_byte);
928 if (CHAR_HEAD_P (*bufp)) /* case (3) */
929 return 0;
931 i = length - 1;
932 while (i >= 0 && ! CHAR_HEAD_P (string[i]))
934 i--;
936 if (i < 0)
938 /* All characters in STRING are not character head. We must
939 check also preceding bytes at POS. We are sure that the gap
940 is at POS. */
941 unsigned char *p = BEG_ADDR;
942 i = pos_byte - 2;
943 while (i >= 0 && ! CHAR_HEAD_P (p[i]))
944 i--;
945 if (i < 0 || !BASE_LEADING_CODE_P (p[i]))
946 return 0;
948 bytes = BYTES_BY_CHAR_HEAD (p[i]);
949 return (bytes <= pos_byte - 1 - i + length
951 : bytes - (pos_byte - 1 - i + length));
953 if (!BASE_LEADING_CODE_P (string[i]))
954 return 0;
956 bytes = BYTES_BY_CHAR_HEAD (string[i]) - (length - i);
957 bufp++, pos_byte++;
958 while (!CHAR_HEAD_P (*bufp)) bufp++, pos_byte++;
960 return (bytes <= pos_byte - opos_byte ? bytes : pos_byte - opos_byte);
963 #endif
966 /* Insert a sequence of NCHARS chars which occupy NBYTES bytes
967 starting at STRING. INHERIT, PREPARE and BEFORE_MARKERS
968 are the same as in insert_1. */
970 void
971 insert_1_both (string, nchars, nbytes, inherit, prepare, before_markers)
972 register const unsigned char *string;
973 register int nchars, nbytes;
974 int inherit, prepare, before_markers;
976 if (nchars == 0)
977 return;
979 if (NILP (current_buffer->enable_multibyte_characters))
980 nchars = nbytes;
982 if (prepare)
983 /* Do this before moving and increasing the gap,
984 because the before-change hooks might move the gap
985 or make it smaller. */
986 prepare_to_modify_buffer (PT, PT, NULL);
988 if (PT != GPT)
989 move_gap_both (PT, PT_BYTE);
990 if (GAP_SIZE < nbytes)
991 make_gap (nbytes - GAP_SIZE);
993 #ifdef BYTE_COMBINING_DEBUG
994 if (count_combining_before (string, nbytes, PT, PT_BYTE)
995 || count_combining_after (string, nbytes, PT, PT_BYTE))
996 abort ();
997 #endif
999 /* Record deletion of the surrounding text that combines with
1000 the insertion. This, together with recording the insertion,
1001 will add up to the right stuff in the undo list. */
1002 record_insert (PT, nchars);
1003 MODIFF++;
1005 bcopy (string, GPT_ADDR, nbytes);
1007 GAP_SIZE -= nbytes;
1008 GPT += nchars;
1009 ZV += nchars;
1010 Z += nchars;
1011 GPT_BYTE += nbytes;
1012 ZV_BYTE += nbytes;
1013 Z_BYTE += nbytes;
1014 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1016 if (GPT_BYTE < GPT)
1017 abort ();
1019 /* The insert may have been in the unchanged region, so check again. */
1020 if (Z - GPT < END_UNCHANGED)
1021 END_UNCHANGED = Z - GPT;
1023 adjust_overlays_for_insert (PT, nchars);
1024 adjust_markers_for_insert (PT, PT_BYTE,
1025 PT + nchars, PT_BYTE + nbytes,
1026 before_markers);
1028 if (BUF_INTERVALS (current_buffer) != 0)
1029 offset_intervals (current_buffer, PT, nchars);
1031 if (!inherit && BUF_INTERVALS (current_buffer) != 0)
1032 set_text_properties (make_number (PT), make_number (PT + nchars),
1033 Qnil, Qnil, Qnil);
1035 adjust_point (nchars, nbytes);
1037 CHECK_MARKERS ();
1040 /* Insert the part of the text of STRING, a Lisp object assumed to be
1041 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
1042 starting at position POS / POS_BYTE. If the text of STRING has properties,
1043 copy them into the buffer.
1045 It does not work to use `insert' for this, because a GC could happen
1046 before we bcopy the stuff into the buffer, and relocate the string
1047 without insert noticing. */
1049 void
1050 insert_from_string (string, pos, pos_byte, length, length_byte, inherit)
1051 Lisp_Object string;
1052 register int pos, pos_byte, length, length_byte;
1053 int inherit;
1055 int opoint = PT;
1056 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
1057 inherit, 0);
1058 signal_after_change (opoint, 0, PT - opoint);
1059 update_compositions (opoint, PT, CHECK_BORDER);
1062 /* Like `insert_from_string' except that all markers pointing
1063 at the place where the insertion happens are adjusted to point after it. */
1065 void
1066 insert_from_string_before_markers (string, pos, pos_byte,
1067 length, length_byte, inherit)
1068 Lisp_Object string;
1069 register int pos, pos_byte, length, length_byte;
1070 int inherit;
1072 int opoint = PT;
1073 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
1074 inherit, 1);
1075 signal_after_change (opoint, 0, PT - opoint);
1076 update_compositions (opoint, PT, CHECK_BORDER);
1079 /* Subroutine of the insertion functions above. */
1081 static void
1082 insert_from_string_1 (string, pos, pos_byte, nchars, nbytes,
1083 inherit, before_markers)
1084 Lisp_Object string;
1085 register int pos, pos_byte, nchars, nbytes;
1086 int inherit, before_markers;
1088 struct gcpro gcpro1;
1089 int outgoing_nbytes = nbytes;
1090 INTERVAL intervals;
1092 /* Make OUTGOING_NBYTES describe the text
1093 as it will be inserted in this buffer. */
1095 if (NILP (current_buffer->enable_multibyte_characters))
1096 outgoing_nbytes = nchars;
1097 else if (! STRING_MULTIBYTE (string))
1098 outgoing_nbytes
1099 = count_size_as_multibyte (SDATA (string) + pos_byte,
1100 nbytes);
1102 GCPRO1 (string);
1103 /* Do this before moving and increasing the gap,
1104 because the before-change hooks might move the gap
1105 or make it smaller. */
1106 prepare_to_modify_buffer (PT, PT, NULL);
1108 if (PT != GPT)
1109 move_gap_both (PT, PT_BYTE);
1110 if (GAP_SIZE < outgoing_nbytes)
1111 make_gap (outgoing_nbytes - GAP_SIZE);
1112 UNGCPRO;
1114 /* Copy the string text into the buffer, perhaps converting
1115 between single-byte and multibyte. */
1116 copy_text (SDATA (string) + pos_byte, GPT_ADDR, nbytes,
1117 STRING_MULTIBYTE (string),
1118 ! NILP (current_buffer->enable_multibyte_characters));
1120 #ifdef BYTE_COMBINING_DEBUG
1121 /* We have copied text into the gap, but we have not altered
1122 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1123 to these functions and get the same results as we would
1124 have got earlier on. Meanwhile, PT_ADDR does point to
1125 the text that has been stored by copy_text. */
1126 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1127 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1128 abort ();
1129 #endif
1131 record_insert (PT, nchars);
1132 MODIFF++;
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. */
1143 if (GPT_BYTE < GPT)
1144 abort ();
1146 /* The insert may have been in the unchanged region, so check again. */
1147 if (Z - GPT < END_UNCHANGED)
1148 END_UNCHANGED = Z - GPT;
1150 adjust_overlays_for_insert (PT, nchars);
1151 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1152 PT_BYTE + outgoing_nbytes,
1153 before_markers);
1155 offset_intervals (current_buffer, PT, nchars);
1157 intervals = STRING_INTERVALS (string);
1158 /* Get the intervals for the part of the string we are inserting. */
1159 if (nbytes < SBYTES (string))
1160 intervals = copy_intervals (intervals, pos, nchars);
1162 /* Insert those intervals. */
1163 graft_intervals_into_buffer (intervals, PT, nchars,
1164 current_buffer, inherit);
1166 adjust_point (nchars, outgoing_nbytes);
1169 /* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
1170 current buffer. If the text in BUF has properties, they are absorbed
1171 into the current buffer.
1173 It does not work to use `insert' for this, because a malloc could happen
1174 and relocate BUF's text before the bcopy happens. */
1176 void
1177 insert_from_buffer (buf, charpos, nchars, inherit)
1178 struct buffer *buf;
1179 int charpos, nchars;
1180 int inherit;
1182 int opoint = PT;
1184 insert_from_buffer_1 (buf, charpos, nchars, inherit);
1185 signal_after_change (opoint, 0, PT - opoint);
1186 update_compositions (opoint, PT, CHECK_BORDER);
1189 static void
1190 insert_from_buffer_1 (buf, from, nchars, inherit)
1191 struct buffer *buf;
1192 int from, nchars;
1193 int inherit;
1195 register Lisp_Object temp;
1196 int chunk, chunk_expanded;
1197 int from_byte = buf_charpos_to_bytepos (buf, from);
1198 int to_byte = buf_charpos_to_bytepos (buf, from + nchars);
1199 int incoming_nbytes = to_byte - from_byte;
1200 int outgoing_nbytes = incoming_nbytes;
1201 INTERVAL intervals;
1203 /* Make OUTGOING_NBYTES describe the text
1204 as it will be inserted in this buffer. */
1206 if (NILP (current_buffer->enable_multibyte_characters))
1207 outgoing_nbytes = nchars;
1208 else if (NILP (buf->enable_multibyte_characters))
1210 int outgoing_before_gap = 0;
1211 int outgoing_after_gap = 0;
1213 if (from < BUF_GPT (buf))
1215 chunk = BUF_GPT_BYTE (buf) - from_byte;
1216 if (chunk > incoming_nbytes)
1217 chunk = incoming_nbytes;
1218 outgoing_before_gap
1219 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf, from_byte),
1220 chunk);
1222 else
1223 chunk = 0;
1225 if (chunk < incoming_nbytes)
1226 outgoing_after_gap
1227 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf,
1228 from_byte + chunk),
1229 incoming_nbytes - chunk);
1231 outgoing_nbytes = outgoing_before_gap + outgoing_after_gap;
1234 /* Make sure point-max won't overflow after this insertion. */
1235 XSETINT (temp, outgoing_nbytes + Z);
1236 if (outgoing_nbytes + Z != XINT (temp))
1237 error ("Maximum buffer size exceeded");
1239 /* Do this before moving and increasing the gap,
1240 because the before-change hooks might move the gap
1241 or make it smaller. */
1242 prepare_to_modify_buffer (PT, PT, NULL);
1244 if (PT != GPT)
1245 move_gap_both (PT, PT_BYTE);
1246 if (GAP_SIZE < outgoing_nbytes)
1247 make_gap (outgoing_nbytes - GAP_SIZE);
1249 if (from < BUF_GPT (buf))
1251 chunk = BUF_GPT_BYTE (buf) - from_byte;
1252 if (chunk > incoming_nbytes)
1253 chunk = incoming_nbytes;
1254 /* Record number of output bytes, so we know where
1255 to put the output from the second copy_text. */
1256 chunk_expanded
1257 = copy_text (BUF_BYTE_ADDRESS (buf, from_byte),
1258 GPT_ADDR, chunk,
1259 ! NILP (buf->enable_multibyte_characters),
1260 ! NILP (current_buffer->enable_multibyte_characters));
1262 else
1263 chunk_expanded = chunk = 0;
1265 if (chunk < incoming_nbytes)
1266 copy_text (BUF_BYTE_ADDRESS (buf, from_byte + chunk),
1267 GPT_ADDR + chunk_expanded, incoming_nbytes - chunk,
1268 ! NILP (buf->enable_multibyte_characters),
1269 ! NILP (current_buffer->enable_multibyte_characters));
1271 #ifdef BYTE_COMBINING_DEBUG
1272 /* We have copied text into the gap, but we have not altered
1273 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1274 to these functions and get the same results as we would
1275 have got earlier on. Meanwhile, GPT_ADDR does point to
1276 the text that has been stored by copy_text. */
1277 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1278 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1279 abort ();
1280 #endif
1282 record_insert (PT, nchars);
1283 MODIFF++;
1285 GAP_SIZE -= outgoing_nbytes;
1286 GPT += nchars;
1287 ZV += nchars;
1288 Z += nchars;
1289 GPT_BYTE += outgoing_nbytes;
1290 ZV_BYTE += outgoing_nbytes;
1291 Z_BYTE += outgoing_nbytes;
1292 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1294 if (GPT_BYTE < GPT)
1295 abort ();
1297 /* The insert may have been in the unchanged region, so check again. */
1298 if (Z - GPT < END_UNCHANGED)
1299 END_UNCHANGED = Z - GPT;
1301 adjust_overlays_for_insert (PT, nchars);
1302 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1303 PT_BYTE + outgoing_nbytes,
1306 if (BUF_INTERVALS (current_buffer) != 0)
1307 offset_intervals (current_buffer, PT, nchars);
1309 /* Get the intervals for the part of the string we are inserting. */
1310 intervals = BUF_INTERVALS (buf);
1311 if (outgoing_nbytes < BUF_Z_BYTE (buf) - BUF_BEG_BYTE (buf))
1313 if (buf == current_buffer && PT <= from)
1314 from += nchars;
1315 intervals = copy_intervals (intervals, from, nchars);
1318 /* Insert those intervals. */
1319 graft_intervals_into_buffer (intervals, PT, nchars, current_buffer, inherit);
1321 adjust_point (nchars, outgoing_nbytes);
1324 /* Record undo information and adjust markers and position keepers for
1325 a replacement of a text PREV_TEXT at FROM to a new text of LEN
1326 chars (LEN_BYTE bytes) which resides in the gap just after
1327 GPT_ADDR.
1329 PREV_TEXT nil means the new text was just inserted. */
1331 void
1332 adjust_after_replace (from, from_byte, prev_text, len, len_byte)
1333 int from, from_byte, len, len_byte;
1334 Lisp_Object prev_text;
1336 int nchars_del = 0, nbytes_del = 0;
1338 #ifdef BYTE_COMBINING_DEBUG
1339 if (count_combining_before (GPT_ADDR, len_byte, from, from_byte)
1340 || count_combining_after (GPT_ADDR, len_byte, from, from_byte))
1341 abort ();
1342 #endif
1344 if (STRINGP (prev_text))
1346 nchars_del = SCHARS (prev_text);
1347 nbytes_del = SBYTES (prev_text);
1350 /* Update various buffer positions for the new text. */
1351 GAP_SIZE -= len_byte;
1352 ZV += len; Z+= len;
1353 ZV_BYTE += len_byte; Z_BYTE += len_byte;
1354 GPT += len; GPT_BYTE += len_byte;
1355 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1357 if (nchars_del > 0)
1358 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1359 len, len_byte);
1360 else
1361 adjust_markers_for_insert (from, from_byte,
1362 from + len, from_byte + len_byte, 0);
1364 if (! EQ (current_buffer->undo_list, Qt))
1366 if (nchars_del > 0)
1367 record_delete (from, prev_text);
1368 record_insert (from, len);
1371 if (len > nchars_del)
1372 adjust_overlays_for_insert (from, len - nchars_del);
1373 else if (len < nchars_del)
1374 adjust_overlays_for_delete (from, nchars_del - len);
1375 if (BUF_INTERVALS (current_buffer) != 0)
1377 offset_intervals (current_buffer, from, len - nchars_del);
1380 if (from < PT)
1381 adjust_point (len - nchars_del, len_byte - nbytes_del);
1383 /* As byte combining will decrease Z, we must check this again. */
1384 if (Z - GPT < END_UNCHANGED)
1385 END_UNCHANGED = Z - GPT;
1387 CHECK_MARKERS ();
1389 if (len == 0)
1390 evaporate_overlays (from);
1391 MODIFF++;
1394 /* Like adjust_after_replace, but doesn't require PREV_TEXT.
1395 This is for use when undo is not enabled in the current buffer. */
1397 void
1398 adjust_after_replace_noundo (from, from_byte, nchars_del, nbytes_del, len, len_byte)
1399 int from, from_byte, nchars_del, nbytes_del, len, len_byte;
1401 #ifdef BYTE_COMBINING_DEBUG
1402 if (count_combining_before (GPT_ADDR, len_byte, from, from_byte)
1403 || count_combining_after (GPT_ADDR, len_byte, from, from_byte))
1404 abort ();
1405 #endif
1407 /* Update various buffer positions for the new text. */
1408 GAP_SIZE -= len_byte;
1409 ZV += len; Z+= len;
1410 ZV_BYTE += len_byte; Z_BYTE += len_byte;
1411 GPT += len; GPT_BYTE += len_byte;
1412 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1414 if (nchars_del > 0)
1415 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1416 len, len_byte);
1417 else
1418 adjust_markers_for_insert (from, from_byte,
1419 from + len, from_byte + len_byte, 0);
1421 if (len > nchars_del)
1422 adjust_overlays_for_insert (from, len - nchars_del);
1423 else if (len < nchars_del)
1424 adjust_overlays_for_delete (from, nchars_del - len);
1425 if (BUF_INTERVALS (current_buffer) != 0)
1427 offset_intervals (current_buffer, from, len - nchars_del);
1430 if (from < PT)
1431 adjust_point (len - nchars_del, len_byte - nbytes_del);
1433 /* As byte combining will decrease Z, we must check this again. */
1434 if (Z - GPT < END_UNCHANGED)
1435 END_UNCHANGED = Z - GPT;
1437 CHECK_MARKERS ();
1439 if (len == 0)
1440 evaporate_overlays (from);
1441 MODIFF++;
1444 /* Record undo information, adjust markers and position keepers for an
1445 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1446 text already exists in the current buffer but character length (TO
1447 - FROM) may be incorrect, the correct length is NEWLEN. */
1449 void
1450 adjust_after_insert (from, from_byte, to, to_byte, newlen)
1451 int from, from_byte, to, to_byte, newlen;
1453 int len = to - from, len_byte = to_byte - from_byte;
1455 if (GPT != to)
1456 move_gap_both (to, to_byte);
1457 GAP_SIZE += len_byte;
1458 GPT -= len; GPT_BYTE -= len_byte;
1459 ZV -= len; ZV_BYTE -= len_byte;
1460 Z -= len; Z_BYTE -= len_byte;
1461 adjust_after_replace (from, from_byte, Qnil, newlen, len_byte);
1464 /* Replace the text from character positions FROM to TO with NEW,
1465 If PREPARE is nonzero, call prepare_to_modify_buffer.
1466 If INHERIT, the newly inserted text should inherit text properties
1467 from the surrounding non-deleted text. */
1469 /* Note that this does not yet handle markers quite right.
1470 Also it needs to record a single undo-entry that does a replacement
1471 rather than a separate delete and insert.
1472 That way, undo will also handle markers properly.
1474 But if MARKERS is 0, don't relocate markers. */
1476 void
1477 replace_range (from, to, new, prepare, inherit, markers)
1478 Lisp_Object new;
1479 int from, to, prepare, inherit, markers;
1481 int inschars = SCHARS (new);
1482 int insbytes = SBYTES (new);
1483 int from_byte, to_byte;
1484 int nbytes_del, nchars_del;
1485 register Lisp_Object temp;
1486 struct gcpro gcpro1;
1487 INTERVAL intervals;
1488 int outgoing_insbytes = insbytes;
1489 Lisp_Object deletion;
1491 CHECK_MARKERS ();
1493 GCPRO1 (new);
1494 deletion = Qnil;
1496 if (prepare)
1498 int range_length = to - from;
1499 prepare_to_modify_buffer (from, to, &from);
1500 to = from + range_length;
1503 UNGCPRO;
1505 /* Make args be valid */
1506 if (from < BEGV)
1507 from = BEGV;
1508 if (to > ZV)
1509 to = ZV;
1511 from_byte = CHAR_TO_BYTE (from);
1512 to_byte = CHAR_TO_BYTE (to);
1514 nchars_del = to - from;
1515 nbytes_del = to_byte - from_byte;
1517 if (nbytes_del <= 0 && insbytes == 0)
1518 return;
1520 /* Make OUTGOING_INSBYTES describe the text
1521 as it will be inserted in this buffer. */
1523 if (NILP (current_buffer->enable_multibyte_characters))
1524 outgoing_insbytes = inschars;
1525 else if (! STRING_MULTIBYTE (new))
1526 outgoing_insbytes
1527 = count_size_as_multibyte (SDATA (new), insbytes);
1529 /* Make sure point-max won't overflow after this insertion. */
1530 XSETINT (temp, Z_BYTE - nbytes_del + insbytes);
1531 if (Z_BYTE - nbytes_del + insbytes != XINT (temp))
1532 error ("Maximum buffer size exceeded");
1534 GCPRO1 (new);
1536 /* Make sure the gap is somewhere in or next to what we are deleting. */
1537 if (from > GPT)
1538 gap_right (from, from_byte);
1539 if (to < GPT)
1540 gap_left (to, to_byte, 0);
1542 /* Even if we don't record for undo, we must keep the original text
1543 because we may have to recover it because of inappropriate byte
1544 combining. */
1545 if (! EQ (current_buffer->undo_list, Qt))
1546 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1548 GAP_SIZE += nbytes_del;
1549 ZV -= nchars_del;
1550 Z -= nchars_del;
1551 ZV_BYTE -= nbytes_del;
1552 Z_BYTE -= nbytes_del;
1553 GPT = from;
1554 GPT_BYTE = from_byte;
1555 *(GPT_ADDR) = 0; /* Put an anchor. */
1557 if (GPT_BYTE < GPT)
1558 abort ();
1560 if (GPT - BEG < BEG_UNCHANGED)
1561 BEG_UNCHANGED = GPT - BEG;
1562 if (Z - GPT < END_UNCHANGED)
1563 END_UNCHANGED = Z - GPT;
1565 if (GAP_SIZE < insbytes)
1566 make_gap (insbytes - GAP_SIZE);
1568 /* Copy the string text into the buffer, perhaps converting
1569 between single-byte and multibyte. */
1570 copy_text (SDATA (new), GPT_ADDR, insbytes,
1571 STRING_MULTIBYTE (new),
1572 ! NILP (current_buffer->enable_multibyte_characters));
1574 #ifdef BYTE_COMBINING_DEBUG
1575 /* We have copied text into the gap, but we have not marked
1576 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1577 here, for both the previous text and the following text.
1578 Meanwhile, GPT_ADDR does point to
1579 the text that has been stored by copy_text. */
1580 if (count_combining_before (GPT_ADDR, outgoing_insbytes, from, from_byte)
1581 || count_combining_after (GPT_ADDR, outgoing_insbytes, from, from_byte))
1582 abort ();
1583 #endif
1585 if (! EQ (current_buffer->undo_list, Qt))
1587 record_delete (from, deletion);
1588 record_insert (from, inschars);
1591 GAP_SIZE -= outgoing_insbytes;
1592 GPT += inschars;
1593 ZV += inschars;
1594 Z += inschars;
1595 GPT_BYTE += outgoing_insbytes;
1596 ZV_BYTE += outgoing_insbytes;
1597 Z_BYTE += outgoing_insbytes;
1598 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1600 if (GPT_BYTE < GPT)
1601 abort ();
1603 /* Adjust the overlay center as needed. This must be done after
1604 adjusting the markers that bound the overlays. */
1605 adjust_overlays_for_delete (from, nchars_del);
1606 adjust_overlays_for_insert (from, inschars);
1608 /* Adjust markers for the deletion and the insertion. */
1609 if (markers)
1610 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1611 inschars, outgoing_insbytes);
1613 offset_intervals (current_buffer, from, inschars - nchars_del);
1615 /* Get the intervals for the part of the string we are inserting--
1616 not including the combined-before bytes. */
1617 intervals = STRING_INTERVALS (new);
1618 /* Insert those intervals. */
1619 graft_intervals_into_buffer (intervals, from, inschars,
1620 current_buffer, inherit);
1622 /* Relocate point as if it were a marker. */
1623 if (from < PT)
1624 adjust_point ((from + inschars - (PT < to ? PT : to)),
1625 (from_byte + outgoing_insbytes
1626 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
1628 if (outgoing_insbytes == 0)
1629 evaporate_overlays (from);
1631 CHECK_MARKERS ();
1633 MODIFF++;
1634 UNGCPRO;
1636 signal_after_change (from, nchars_del, GPT - from);
1637 update_compositions (from, GPT, CHECK_BORDER);
1640 /* Delete characters in current buffer
1641 from FROM up to (but not including) TO.
1642 If TO comes before FROM, we delete nothing. */
1644 void
1645 del_range (from, to)
1646 register int from, to;
1648 del_range_1 (from, to, 1, 0);
1651 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1652 RET_STRING says to return the deleted text. */
1654 Lisp_Object
1655 del_range_1 (from, to, prepare, ret_string)
1656 int from, to, prepare, ret_string;
1658 int from_byte, to_byte;
1659 Lisp_Object deletion;
1660 struct gcpro gcpro1;
1662 /* Make args be valid */
1663 if (from < BEGV)
1664 from = BEGV;
1665 if (to > ZV)
1666 to = ZV;
1668 if (to <= from)
1669 return Qnil;
1671 if (prepare)
1673 int range_length = to - from;
1674 prepare_to_modify_buffer (from, to, &from);
1675 to = min (ZV, from + range_length);
1678 from_byte = CHAR_TO_BYTE (from);
1679 to_byte = CHAR_TO_BYTE (to);
1681 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
1682 GCPRO1(deletion);
1683 signal_after_change (from, to - from, 0);
1684 update_compositions (from, from, CHECK_HEAD);
1685 UNGCPRO;
1686 return deletion;
1689 /* Like del_range_1 but args are byte positions, not char positions. */
1691 void
1692 del_range_byte (from_byte, to_byte, prepare)
1693 int from_byte, to_byte, prepare;
1695 int from, to;
1697 /* Make args be valid */
1698 if (from_byte < BEGV_BYTE)
1699 from_byte = BEGV_BYTE;
1700 if (to_byte > ZV_BYTE)
1701 to_byte = ZV_BYTE;
1703 if (to_byte <= from_byte)
1704 return;
1706 from = BYTE_TO_CHAR (from_byte);
1707 to = BYTE_TO_CHAR (to_byte);
1709 if (prepare)
1711 int old_from = from, old_to = Z - to;
1712 int range_length = to - from;
1713 prepare_to_modify_buffer (from, to, &from);
1714 to = from + range_length;
1716 if (old_from != from)
1717 from_byte = CHAR_TO_BYTE (from);
1718 if (to > ZV)
1720 to = ZV;
1721 to_byte = ZV_BYTE;
1723 else if (old_to == Z - to)
1724 to_byte = CHAR_TO_BYTE (to);
1727 del_range_2 (from, from_byte, to, to_byte, 0);
1728 signal_after_change (from, to - from, 0);
1729 update_compositions (from, from, CHECK_HEAD);
1732 /* Like del_range_1, but positions are specified both as charpos
1733 and bytepos. */
1735 void
1736 del_range_both (from, from_byte, to, to_byte, prepare)
1737 int from, from_byte, to, to_byte, prepare;
1739 /* Make args be valid */
1740 if (from_byte < BEGV_BYTE)
1741 from_byte = BEGV_BYTE;
1742 if (to_byte > ZV_BYTE)
1743 to_byte = ZV_BYTE;
1745 if (to_byte <= from_byte)
1746 return;
1748 if (from < BEGV)
1749 from = BEGV;
1750 if (to > ZV)
1751 to = ZV;
1753 if (prepare)
1755 int old_from = from, old_to = Z - to;
1756 int range_length = to - from;
1757 prepare_to_modify_buffer (from, to, &from);
1758 to = from + range_length;
1760 if (old_from != from)
1761 from_byte = CHAR_TO_BYTE (from);
1762 if (to > ZV)
1764 to = ZV;
1765 to_byte = ZV_BYTE;
1767 else if (old_to == Z - to)
1768 to_byte = CHAR_TO_BYTE (to);
1771 del_range_2 (from, from_byte, to, to_byte, 0);
1772 signal_after_change (from, to - from, 0);
1773 update_compositions (from, from, CHECK_HEAD);
1776 /* Delete a range of text, specified both as character positions
1777 and byte positions. FROM and TO are character positions,
1778 while FROM_BYTE and TO_BYTE are byte positions.
1779 If RET_STRING is true, the deleted area is returned as a string. */
1781 Lisp_Object
1782 del_range_2 (from, from_byte, to, to_byte, ret_string)
1783 int from, from_byte, to, to_byte, ret_string;
1785 register int nbytes_del, nchars_del;
1786 Lisp_Object deletion;
1788 CHECK_MARKERS ();
1790 nchars_del = to - from;
1791 nbytes_del = to_byte - from_byte;
1793 /* Make sure the gap is somewhere in or next to what we are deleting. */
1794 if (from > GPT)
1795 gap_right (from, from_byte);
1796 if (to < GPT)
1797 gap_left (to, to_byte, 0);
1799 #ifdef BYTE_COMBINING_DEBUG
1800 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer, to_byte),
1801 Z_BYTE - to_byte, from, from_byte))
1802 abort ();
1803 #endif
1805 if (ret_string || ! EQ (current_buffer->undo_list, Qt))
1806 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1807 else
1808 deletion = Qnil;
1810 /* Relocate all markers pointing into the new, larger gap
1811 to point at the end of the text before the gap.
1812 Do this before recording the deletion,
1813 so that undo handles this after reinserting the text. */
1814 adjust_markers_for_delete (from, from_byte, to, to_byte);
1816 if (! EQ (current_buffer->undo_list, Qt))
1817 record_delete (from, deletion);
1818 MODIFF++;
1820 /* Relocate point as if it were a marker. */
1821 if (from < PT)
1822 adjust_point (from - (PT < to ? PT : to),
1823 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
1825 offset_intervals (current_buffer, from, - nchars_del);
1827 /* Adjust the overlay center as needed. This must be done after
1828 adjusting the markers that bound the overlays. */
1829 adjust_overlays_for_delete (from, nchars_del);
1831 GAP_SIZE += nbytes_del;
1832 ZV_BYTE -= nbytes_del;
1833 Z_BYTE -= nbytes_del;
1834 ZV -= nchars_del;
1835 Z -= nchars_del;
1836 GPT = from;
1837 GPT_BYTE = from_byte;
1838 *(GPT_ADDR) = 0; /* Put an anchor. */
1840 if (GPT_BYTE < GPT)
1841 abort ();
1843 if (GPT - BEG < BEG_UNCHANGED)
1844 BEG_UNCHANGED = GPT - BEG;
1845 if (Z - GPT < END_UNCHANGED)
1846 END_UNCHANGED = Z - GPT;
1848 CHECK_MARKERS ();
1850 evaporate_overlays (from);
1852 return deletion;
1855 /* Call this if you're about to change the region of BUFFER from
1856 character positions START to END. This checks the read-only
1857 properties of the region, calls the necessary modification hooks,
1858 and warns the next redisplay that it should pay attention to that
1859 area. */
1861 void
1862 modify_region (buffer, start, end)
1863 struct buffer *buffer;
1864 int start, end;
1866 struct buffer *old_buffer = current_buffer;
1868 if (buffer != old_buffer)
1869 set_buffer_internal (buffer);
1871 prepare_to_modify_buffer (start, end, NULL);
1873 BUF_COMPUTE_UNCHANGED (buffer, start - 1, end);
1875 if (MODIFF <= SAVE_MODIFF)
1876 record_first_change ();
1877 MODIFF++;
1879 buffer->point_before_scroll = Qnil;
1881 if (buffer != old_buffer)
1882 set_buffer_internal (old_buffer);
1885 /* Check that it is okay to modify the buffer between START and END,
1886 which are char positions.
1888 Run the before-change-function, if any. If intervals are in use,
1889 verify that the text to be modified is not read-only, and call
1890 any modification properties the text may have.
1892 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1893 by holding its value temporarily in a marker. */
1895 void
1896 prepare_to_modify_buffer (start, end, preserve_ptr)
1897 int start, end;
1898 int *preserve_ptr;
1900 if (!NILP (current_buffer->read_only))
1901 Fbarf_if_buffer_read_only ();
1903 /* Let redisplay consider other windows than selected_window
1904 if modifying another buffer. */
1905 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1906 ++windows_or_buffers_changed;
1908 if (BUF_INTERVALS (current_buffer) != 0)
1910 if (preserve_ptr)
1912 Lisp_Object preserve_marker;
1913 struct gcpro gcpro1;
1914 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil);
1915 GCPRO1 (preserve_marker);
1916 verify_interval_modification (current_buffer, start, end);
1917 *preserve_ptr = marker_position (preserve_marker);
1918 unchain_marker (XMARKER (preserve_marker));
1919 UNGCPRO;
1921 else
1922 verify_interval_modification (current_buffer, start, end);
1925 #ifdef CLASH_DETECTION
1926 if (!NILP (current_buffer->file_truename)
1927 /* Make binding buffer-file-name to nil effective. */
1928 && !NILP (current_buffer->filename)
1929 && SAVE_MODIFF >= MODIFF)
1930 lock_file (current_buffer->file_truename);
1931 #else
1932 /* At least warn if this file has changed on disk since it was visited. */
1933 if (!NILP (current_buffer->filename)
1934 && SAVE_MODIFF >= MODIFF
1935 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
1936 && !NILP (Ffile_exists_p (current_buffer->filename)))
1937 call1 (intern ("ask-user-about-supersession-threat"),
1938 current_buffer->filename);
1939 #endif /* not CLASH_DETECTION */
1941 signal_before_change (start, end, preserve_ptr);
1943 if (current_buffer->newline_cache)
1944 invalidate_region_cache (current_buffer,
1945 current_buffer->newline_cache,
1946 start - BEG, Z - end);
1947 if (current_buffer->width_run_cache)
1948 invalidate_region_cache (current_buffer,
1949 current_buffer->width_run_cache,
1950 start - BEG, Z - end);
1952 Vdeactivate_mark = Qt;
1955 /* These macros work with an argument named `preserve_ptr'
1956 and a local variable named `preserve_marker'. */
1958 #define PRESERVE_VALUE \
1959 if (preserve_ptr && NILP (preserve_marker)) \
1960 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1962 #define RESTORE_VALUE \
1963 if (! NILP (preserve_marker)) \
1965 *preserve_ptr = marker_position (preserve_marker); \
1966 unchain_marker (XMARKER (preserve_marker)); \
1969 #define PRESERVE_START_END \
1970 if (NILP (start_marker)) \
1971 start_marker = Fcopy_marker (start, Qnil); \
1972 if (NILP (end_marker)) \
1973 end_marker = Fcopy_marker (end, Qnil);
1975 #define FETCH_START \
1976 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1978 #define FETCH_END \
1979 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1981 /* Signal a change to the buffer immediately before it happens.
1982 START_INT and END_INT are the bounds of the text to be changed.
1984 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1985 by holding its value temporarily in a marker. */
1987 void
1988 signal_before_change (start_int, end_int, preserve_ptr)
1989 int start_int, end_int;
1990 int *preserve_ptr;
1992 Lisp_Object start, end;
1993 Lisp_Object start_marker, end_marker;
1994 Lisp_Object preserve_marker;
1995 struct gcpro gcpro1, gcpro2, gcpro3;
1997 if (inhibit_modification_hooks)
1998 return;
2000 start = make_number (start_int);
2001 end = make_number (end_int);
2002 preserve_marker = Qnil;
2003 start_marker = Qnil;
2004 end_marker = Qnil;
2005 GCPRO3 (preserve_marker, start_marker, end_marker);
2007 /* If buffer is unmodified, run a special hook for that case. */
2008 if (SAVE_MODIFF >= MODIFF
2009 && !NILP (Vfirst_change_hook)
2010 && !NILP (Vrun_hooks))
2012 PRESERVE_VALUE;
2013 PRESERVE_START_END;
2014 call1 (Vrun_hooks, Qfirst_change_hook);
2017 /* Now run the before-change-functions if any. */
2018 if (!NILP (Vbefore_change_functions))
2020 Lisp_Object args[3];
2021 Lisp_Object before_change_functions;
2022 Lisp_Object after_change_functions;
2023 struct gcpro gcpro1, gcpro2;
2024 struct buffer *old = current_buffer;
2025 struct buffer *new;
2027 PRESERVE_VALUE;
2028 PRESERVE_START_END;
2030 /* "Bind" before-change-functions and after-change-functions
2031 to nil--but in a way that errors don't know about.
2032 That way, if there's an error in them, they will stay nil. */
2033 before_change_functions = Vbefore_change_functions;
2034 after_change_functions = Vafter_change_functions;
2035 Vbefore_change_functions = Qnil;
2036 Vafter_change_functions = Qnil;
2037 GCPRO2 (before_change_functions, after_change_functions);
2039 /* Actually run the hook functions. */
2040 args[0] = Qbefore_change_functions;
2041 args[1] = FETCH_START;
2042 args[2] = FETCH_END;
2043 run_hook_list_with_args (before_change_functions, 3, args);
2045 /* "Unbind" the variables we "bound" to nil. Beware a
2046 buffer-local hook which changes the buffer when run (e.g. W3). */
2047 if (old != current_buffer)
2049 new = current_buffer;
2050 set_buffer_internal (old);
2051 Vbefore_change_functions = before_change_functions;
2052 Vafter_change_functions = after_change_functions;
2053 set_buffer_internal (new);
2055 else
2057 Vbefore_change_functions = before_change_functions;
2058 Vafter_change_functions = after_change_functions;
2060 UNGCPRO;
2063 if (current_buffer->overlays_before || current_buffer->overlays_after)
2065 PRESERVE_VALUE;
2066 report_overlay_modification (FETCH_START, FETCH_END, 0,
2067 FETCH_START, FETCH_END, Qnil);
2070 if (! NILP (start_marker))
2071 free_marker (start_marker);
2072 if (! NILP (end_marker))
2073 free_marker (end_marker);
2074 RESTORE_VALUE;
2075 UNGCPRO;
2078 /* Signal a change immediately after it happens.
2079 CHARPOS is the character position of the start of the changed text.
2080 LENDEL is the number of characters of the text before the change.
2081 (Not the whole buffer; just the part that was changed.)
2082 LENINS is the number of characters in that part of the text
2083 after the change. */
2085 void
2086 signal_after_change (charpos, lendel, lenins)
2087 int charpos, lendel, lenins;
2089 if (inhibit_modification_hooks)
2090 return;
2092 /* If we are deferring calls to the after-change functions
2093 and there are no before-change functions,
2094 just record the args that we were going to use. */
2095 if (! NILP (Vcombine_after_change_calls)
2096 && NILP (Vbefore_change_functions)
2097 && !current_buffer->overlays_before
2098 && !current_buffer->overlays_after)
2100 Lisp_Object elt;
2102 if (!NILP (combine_after_change_list)
2103 && current_buffer != XBUFFER (combine_after_change_buffer))
2104 Fcombine_after_change_execute ();
2106 elt = Fcons (make_number (charpos - BEG),
2107 Fcons (make_number (Z - (charpos - lendel + lenins)),
2108 Fcons (make_number (lenins - lendel), Qnil)));
2109 combine_after_change_list
2110 = Fcons (elt, combine_after_change_list);
2111 combine_after_change_buffer = Fcurrent_buffer ();
2113 return;
2116 if (!NILP (combine_after_change_list))
2117 Fcombine_after_change_execute ();
2119 if (!NILP (Vafter_change_functions))
2121 Lisp_Object args[4];
2122 Lisp_Object before_change_functions;
2123 Lisp_Object after_change_functions;
2124 struct buffer *old = current_buffer;
2125 struct buffer *new;
2126 struct gcpro gcpro1, gcpro2;
2128 /* "Bind" before-change-functions and after-change-functions
2129 to nil--but in a way that errors don't know about.
2130 That way, if there's an error in them, they will stay nil. */
2131 before_change_functions = Vbefore_change_functions;
2132 after_change_functions = Vafter_change_functions;
2133 Vbefore_change_functions = Qnil;
2134 Vafter_change_functions = Qnil;
2135 GCPRO2 (before_change_functions, after_change_functions);
2137 /* Actually run the hook functions. */
2138 args[0] = Qafter_change_functions;
2139 XSETFASTINT (args[1], charpos);
2140 XSETFASTINT (args[2], charpos + lenins);
2141 XSETFASTINT (args[3], lendel);
2142 run_hook_list_with_args (after_change_functions,
2143 4, args);
2145 /* "Unbind" the variables we "bound" to nil. Beware a
2146 buffer-local hook which changes the buffer when run (e.g. W3). */
2147 if (old != current_buffer)
2149 new = current_buffer;
2150 set_buffer_internal (old);
2151 Vbefore_change_functions = before_change_functions;
2152 Vafter_change_functions = after_change_functions;
2153 set_buffer_internal (new);
2155 else
2157 Vbefore_change_functions = before_change_functions;
2158 Vafter_change_functions = after_change_functions;
2160 UNGCPRO;
2163 if (current_buffer->overlays_before || current_buffer->overlays_after)
2164 report_overlay_modification (make_number (charpos),
2165 make_number (charpos + lenins),
2167 make_number (charpos),
2168 make_number (charpos + lenins),
2169 make_number (lendel));
2171 /* After an insertion, call the text properties
2172 insert-behind-hooks or insert-in-front-hooks. */
2173 if (lendel == 0)
2174 report_interval_modification (make_number (charpos),
2175 make_number (charpos + lenins));
2178 Lisp_Object
2179 Fcombine_after_change_execute_1 (val)
2180 Lisp_Object val;
2182 Vcombine_after_change_calls = val;
2183 return val;
2186 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
2187 Scombine_after_change_execute, 0, 0, 0,
2188 doc: /* This function is for use internally in `combine-after-change-calls'. */)
2191 int count = SPECPDL_INDEX ();
2192 int beg, end, change;
2193 int begpos, endpos;
2194 Lisp_Object tail;
2196 if (NILP (combine_after_change_list))
2197 return Qnil;
2199 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
2201 Fset_buffer (combine_after_change_buffer);
2203 /* # chars unchanged at beginning of buffer. */
2204 beg = Z - BEG;
2205 /* # chars unchanged at end of buffer. */
2206 end = beg;
2207 /* Total amount of insertion (negative for deletion). */
2208 change = 0;
2210 /* Scan the various individual changes,
2211 accumulating the range info in BEG, END and CHANGE. */
2212 for (tail = combine_after_change_list; CONSP (tail);
2213 tail = XCDR (tail))
2215 Lisp_Object elt;
2216 int thisbeg, thisend, thischange;
2218 /* Extract the info from the next element. */
2219 elt = XCAR (tail);
2220 if (! CONSP (elt))
2221 continue;
2222 thisbeg = XINT (XCAR (elt));
2224 elt = XCDR (elt);
2225 if (! CONSP (elt))
2226 continue;
2227 thisend = XINT (XCAR (elt));
2229 elt = XCDR (elt);
2230 if (! CONSP (elt))
2231 continue;
2232 thischange = XINT (XCAR (elt));
2234 /* Merge this range into the accumulated range. */
2235 change += thischange;
2236 if (thisbeg < beg)
2237 beg = thisbeg;
2238 if (thisend < end)
2239 end = thisend;
2242 /* Get the current start and end positions of the range
2243 that was changed. */
2244 begpos = BEG + beg;
2245 endpos = Z - end;
2247 /* We are about to handle these, so discard them. */
2248 combine_after_change_list = Qnil;
2250 /* Now run the after-change functions for real.
2251 Turn off the flag that defers them. */
2252 record_unwind_protect (Fcombine_after_change_execute_1,
2253 Vcombine_after_change_calls);
2254 signal_after_change (begpos, endpos - begpos - change, endpos - begpos);
2255 update_compositions (begpos, endpos, CHECK_ALL);
2257 return unbind_to (count, Qnil);
2260 void
2261 syms_of_insdel ()
2263 staticpro (&combine_after_change_list);
2264 combine_after_change_list = Qnil;
2265 combine_after_change_buffer = Qnil;
2267 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag,
2268 doc: /* Non-nil means enable debugging checks for invalid marker positions. */);
2269 check_markers_debug_flag = 0;
2270 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls,
2271 doc: /* Used internally by the `combine-after-change-calls' macro. */);
2272 Vcombine_after_change_calls = Qnil;
2274 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks,
2275 doc: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2276 This affects `before-change-functions' and `after-change-functions',
2277 as well as hooks attached to text properties and overlays. */);
2278 inhibit_modification_hooks = 0;
2279 Qinhibit_modification_hooks = intern ("inhibit-modification-hooks");
2280 staticpro (&Qinhibit_modification_hooks);
2282 defsubr (&Scombine_after_change_execute);