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