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