(make_gap_larger): Make sure buffer size does not overflow range of int.
[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_larger (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 Make sure we don't introduce overflows in the calculation. */
539
540 if (Z_BYTE - BEG_BYTE + GAP_SIZE
541 >= (((EMACS_INT) 1 << (min (VALBITS, BITS_PER_INT) - 1)) - 1
542 - nbytes_added))
543 error ("Buffer exceeds maximum size");
544
545 enlarge_buffer_text (current_buffer, nbytes_added);
546
547 /* Prevent quitting in move_gap. */
548 tem = Vinhibit_quit;
549 Vinhibit_quit = Qt;
550
551 real_gap_loc = GPT;
552 real_gap_loc_byte = GPT_BYTE;
553 old_gap_size = GAP_SIZE;
554
555 /* Call the newly allocated space a gap at the end of the whole space. */
556 GPT = Z + GAP_SIZE;
557 GPT_BYTE = Z_BYTE + GAP_SIZE;
558 GAP_SIZE = nbytes_added;
559
560 /* Move the new gap down to be consecutive with the end of the old one.
561 This adjusts the markers properly too. */
562 gap_left (real_gap_loc + old_gap_size, real_gap_loc_byte + old_gap_size, 1);
563
564 /* Now combine the two into one large gap. */
565 GAP_SIZE += old_gap_size;
566 GPT = real_gap_loc;
567 GPT_BYTE = real_gap_loc_byte;
568
569 /* Put an anchor. */
570 *(Z_ADDR) = 0;
571
572 Vinhibit_quit = tem;
573 }
574
575
576 /* Make the gap NBYTES_REMOVED bytes shorted. */
577
578 void
579 make_gap_smaller (nbytes_removed)
580 int nbytes_removed;
581 {
582 Lisp_Object tem;
583 int real_gap_loc;
584 int real_gap_loc_byte;
585 int real_Z;
586 int real_Z_byte;
587 int old_gap_size;
588
589 /* Make sure the gap is at least 20 bytes. */
590 if (GAP_SIZE - nbytes_removed < 20)
591 nbytes_removed = GAP_SIZE - 20;
592
593 /* Prevent quitting in move_gap. */
594 tem = Vinhibit_quit;
595 Vinhibit_quit = Qt;
596
597 real_gap_loc = GPT;
598 real_gap_loc_byte = GPT_BYTE;
599 old_gap_size = GAP_SIZE;
600 real_Z = Z;
601 real_Z_byte = Z_BYTE;
602
603 /* Pretend that the last unwanted part of the gap is the entire gap,
604 and that the first desired part of the gap is part of the buffer
605 text. */
606 bzero (GPT_ADDR, GAP_SIZE - nbytes_removed);
607 GPT += GAP_SIZE - nbytes_removed;
608 GPT_BYTE += GAP_SIZE - nbytes_removed;
609 Z += GAP_SIZE - nbytes_removed;
610 Z_BYTE += GAP_SIZE - nbytes_removed;
611 GAP_SIZE = nbytes_removed;
612
613 /* Move the unwanted pretend gap to the end of the buffer. This
614 adjusts the markers properly too. */
615 gap_right (Z, Z_BYTE);
616
617 enlarge_buffer_text (current_buffer, -nbytes_removed);
618
619 /* Now restore the desired gap. */
620 GAP_SIZE = old_gap_size - nbytes_removed;
621 GPT = real_gap_loc;
622 GPT_BYTE = real_gap_loc_byte;
623 Z = real_Z;
624 Z_BYTE = real_Z_byte;
625
626 /* Put an anchor. */
627 *(Z_ADDR) = 0;
628
629 Vinhibit_quit = tem;
630 }
631
632 void
633 make_gap (nbytes_added)
634 int nbytes_added;
635 {
636 if (nbytes_added >= 0)
637 make_gap_larger (nbytes_added);
638 #if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
639 else
640 make_gap_smaller (-nbytes_added);
641 #endif
642 }
643 \f
644 /* Copy NBYTES bytes of text from FROM_ADDR to TO_ADDR.
645 FROM_MULTIBYTE says whether the incoming text is multibyte.
646 TO_MULTIBYTE says whether to store the text as multibyte.
647 If FROM_MULTIBYTE != TO_MULTIBYTE, we convert.
648
649 Return the number of bytes stored at TO_ADDR. */
650
651 int
652 copy_text (from_addr, to_addr, nbytes,
653 from_multibyte, to_multibyte)
654 unsigned char *from_addr;
655 unsigned char *to_addr;
656 int nbytes;
657 int from_multibyte, to_multibyte;
658 {
659 if (from_multibyte == to_multibyte)
660 {
661 bcopy (from_addr, to_addr, nbytes);
662 return nbytes;
663 }
664 else if (from_multibyte)
665 {
666 int nchars = 0;
667 int bytes_left = nbytes;
668 Lisp_Object tbl = Qnil;
669
670 /* We set the variable tbl to the reverse table of
671 Vnonascii_translation_table in advance. */
672 if (CHAR_TABLE_P (Vnonascii_translation_table))
673 {
674 tbl = Fchar_table_extra_slot (Vnonascii_translation_table,
675 make_number (0));
676 if (!CHAR_TABLE_P (tbl))
677 tbl = Qnil;
678 }
679
680 /* Convert multibyte to single byte. */
681 while (bytes_left > 0)
682 {
683 int thislen, c;
684 c = STRING_CHAR_AND_LENGTH (from_addr, bytes_left, thislen);
685 if (!SINGLE_BYTE_CHAR_P (c))
686 c = multibyte_char_to_unibyte (c, tbl);
687 *to_addr++ = c;
688 from_addr += thislen;
689 bytes_left -= thislen;
690 nchars++;
691 }
692 return nchars;
693 }
694 else
695 {
696 unsigned char *initial_to_addr = to_addr;
697
698 /* Convert single-byte to multibyte. */
699 while (nbytes > 0)
700 {
701 int c = *from_addr++;
702
703 if (c >= 0200)
704 {
705 c = unibyte_char_to_multibyte (c);
706 to_addr += CHAR_STRING (c, to_addr);
707 nbytes--;
708 }
709 else
710 /* Special case for speed. */
711 *to_addr++ = c, nbytes--;
712 }
713 return to_addr - initial_to_addr;
714 }
715 }
716
717 /* Return the number of bytes it would take
718 to convert some single-byte text to multibyte.
719 The single-byte text consists of NBYTES bytes at PTR. */
720
721 int
722 count_size_as_multibyte (ptr, nbytes)
723 unsigned char *ptr;
724 int nbytes;
725 {
726 int i;
727 int outgoing_nbytes = 0;
728
729 for (i = 0; i < nbytes; i++)
730 {
731 unsigned int c = *ptr++;
732
733 if (c < 0200)
734 outgoing_nbytes++;
735 else
736 {
737 c = unibyte_char_to_multibyte (c);
738 outgoing_nbytes += CHAR_BYTES (c);
739 }
740 }
741
742 return outgoing_nbytes;
743 }
744 \f
745 /* Insert a string of specified length before point.
746 This function judges multibyteness based on
747 enable_multibyte_characters in the current buffer;
748 it never converts between single-byte and multibyte.
749
750 DO NOT use this for the contents of a Lisp string or a Lisp buffer!
751 prepare_to_modify_buffer could relocate the text. */
752
753 void
754 insert (string, nbytes)
755 register unsigned char *string;
756 register int nbytes;
757 {
758 if (nbytes > 0)
759 {
760 int opoint = PT;
761 insert_1 (string, nbytes, 0, 1, 0);
762 signal_after_change (opoint, 0, PT - opoint);
763 update_compositions (opoint, PT, CHECK_BORDER);
764 }
765 }
766
767 /* Likewise, but inherit text properties from neighboring characters. */
768
769 void
770 insert_and_inherit (string, nbytes)
771 register unsigned char *string;
772 register int nbytes;
773 {
774 if (nbytes > 0)
775 {
776 int opoint = PT;
777 insert_1 (string, nbytes, 1, 1, 0);
778 signal_after_change (opoint, 0, PT - opoint);
779 update_compositions (opoint, PT, CHECK_BORDER);
780 }
781 }
782
783 /* Insert the character C before point. Do not inherit text properties. */
784
785 void
786 insert_char (c)
787 int c;
788 {
789 unsigned char str[MAX_MULTIBYTE_LENGTH];
790 int len;
791
792 if (! NILP (current_buffer->enable_multibyte_characters))
793 len = CHAR_STRING (c, str);
794 else
795 {
796 len = 1;
797 str[0] = c;
798 }
799
800 insert (str, len);
801 }
802
803 /* Insert the null-terminated string S before point. */
804
805 void
806 insert_string (s)
807 char *s;
808 {
809 insert (s, strlen (s));
810 }
811
812 /* Like `insert' except that all markers pointing at the place where
813 the insertion happens are adjusted to point after it.
814 Don't use this function to insert part of a Lisp string,
815 since gc could happen and relocate it. */
816
817 void
818 insert_before_markers (string, nbytes)
819 unsigned char *string;
820 register int nbytes;
821 {
822 if (nbytes > 0)
823 {
824 int opoint = PT;
825
826 insert_1 (string, nbytes, 0, 1, 1);
827 signal_after_change (opoint, 0, PT - opoint);
828 update_compositions (opoint, PT, CHECK_BORDER);
829 }
830 }
831
832 /* Likewise, but inherit text properties from neighboring characters. */
833
834 void
835 insert_before_markers_and_inherit (string, nbytes)
836 unsigned char *string;
837 register int nbytes;
838 {
839 if (nbytes > 0)
840 {
841 int opoint = PT;
842
843 insert_1 (string, nbytes, 1, 1, 1);
844 signal_after_change (opoint, 0, PT - opoint);
845 update_compositions (opoint, PT, CHECK_BORDER);
846 }
847 }
848
849 /* Subroutine used by the insert functions above. */
850
851 void
852 insert_1 (string, nbytes, inherit, prepare, before_markers)
853 register unsigned char *string;
854 register int nbytes;
855 int inherit, prepare, before_markers;
856 {
857 insert_1_both (string, chars_in_text (string, nbytes), nbytes,
858 inherit, prepare, before_markers);
859 }
860
861 \f
862 #ifdef BYTE_COMBINING_DEBUG
863
864 /* See if the bytes before POS/POS_BYTE combine with bytes
865 at the start of STRING to form a single character.
866 If so, return the number of bytes at the start of STRING
867 which combine in this way. Otherwise, return 0. */
868
869 int
870 count_combining_before (string, length, pos, pos_byte)
871 unsigned char *string;
872 int length;
873 int pos, pos_byte;
874 {
875 int len, combining_bytes;
876 unsigned char *p;
877
878 if (NILP (current_buffer->enable_multibyte_characters))
879 return 0;
880
881 /* At first, we can exclude the following cases:
882 (1) STRING[0] can't be a following byte of multibyte sequence.
883 (2) POS is the start of the current buffer.
884 (3) A character before POS is not a multibyte character. */
885 if (length == 0 || CHAR_HEAD_P (*string)) /* case (1) */
886 return 0;
887 if (pos_byte == BEG_BYTE) /* case (2) */
888 return 0;
889 len = 1;
890 p = BYTE_POS_ADDR (pos_byte - 1);
891 while (! CHAR_HEAD_P (*p)) p--, len++;
892 if (! BASE_LEADING_CODE_P (*p)) /* case (3) */
893 return 0;
894
895 combining_bytes = BYTES_BY_CHAR_HEAD (*p) - len;
896 if (combining_bytes <= 0)
897 /* The character preceding POS is, complete and no room for
898 combining bytes (combining_bytes == 0), or an independent 8-bit
899 character (combining_bytes < 0). */
900 return 0;
901
902 /* We have a combination situation. Count the bytes at STRING that
903 may combine. */
904 p = string + 1;
905 while (!CHAR_HEAD_P (*p) && p < string + length)
906 p++;
907
908 return (combining_bytes < p - string ? combining_bytes : p - string);
909 }
910
911 /* See if the bytes after POS/POS_BYTE combine with bytes
912 at the end of STRING to form a single character.
913 If so, return the number of bytes after POS/POS_BYTE
914 which combine in this way. Otherwise, return 0. */
915
916 int
917 count_combining_after (string, length, pos, pos_byte)
918 unsigned char *string;
919 int length;
920 int pos, pos_byte;
921 {
922 int opos_byte = pos_byte;
923 int i;
924 int bytes;
925 unsigned char *bufp;
926
927 if (NILP (current_buffer->enable_multibyte_characters))
928 return 0;
929
930 /* At first, we can exclude the following cases:
931 (1) The last byte of STRING is an ASCII.
932 (2) POS is the last of the current buffer.
933 (3) A character at POS can't be a following byte of multibyte
934 character. */
935 if (length > 0 && ASCII_BYTE_P (string[length - 1])) /* case (1) */
936 return 0;
937 if (pos_byte == Z_BYTE) /* case (2) */
938 return 0;
939 bufp = BYTE_POS_ADDR (pos_byte);
940 if (CHAR_HEAD_P (*bufp)) /* case (3) */
941 return 0;
942
943 i = length - 1;
944 while (i >= 0 && ! CHAR_HEAD_P (string[i]))
945 {
946 i--;
947 }
948 if (i < 0)
949 {
950 /* All characters in STRING are not character head. We must
951 check also preceding bytes at POS. We are sure that the gap
952 is at POS. */
953 unsigned char *p = BEG_ADDR;
954 i = pos_byte - 2;
955 while (i >= 0 && ! CHAR_HEAD_P (p[i]))
956 i--;
957 if (i < 0 || !BASE_LEADING_CODE_P (p[i]))
958 return 0;
959
960 bytes = BYTES_BY_CHAR_HEAD (p[i]);
961 return (bytes <= pos_byte - 1 - i + length
962 ? 0
963 : bytes - (pos_byte - 1 - i + length));
964 }
965 if (!BASE_LEADING_CODE_P (string[i]))
966 return 0;
967
968 bytes = BYTES_BY_CHAR_HEAD (string[i]) - (length - i);
969 bufp++, pos_byte++;
970 while (!CHAR_HEAD_P (*bufp)) bufp++, pos_byte++;
971
972 return (bytes <= pos_byte - opos_byte ? bytes : pos_byte - opos_byte);
973 }
974
975 #endif
976
977 \f
978 /* Insert a sequence of NCHARS chars which occupy NBYTES bytes
979 starting at STRING. INHERIT, PREPARE and BEFORE_MARKERS
980 are the same as in insert_1. */
981
982 void
983 insert_1_both (string, nchars, nbytes, inherit, prepare, before_markers)
984 register unsigned char *string;
985 register int nchars, nbytes;
986 int inherit, prepare, before_markers;
987 {
988 if (nchars == 0)
989 return;
990
991 if (NILP (current_buffer->enable_multibyte_characters))
992 nchars = nbytes;
993
994 if (prepare)
995 /* Do this before moving and increasing the gap,
996 because the before-change hooks might move the gap
997 or make it smaller. */
998 prepare_to_modify_buffer (PT, PT, NULL);
999
1000 if (PT != GPT)
1001 move_gap_both (PT, PT_BYTE);
1002 if (GAP_SIZE < nbytes)
1003 make_gap (nbytes - GAP_SIZE);
1004
1005 #ifdef BYTE_COMBINING_DEBUG
1006 if (count_combining_before (string, nbytes, PT, PT_BYTE)
1007 || count_combining_after (string, nbytes, PT, PT_BYTE))
1008 abort ();
1009 #endif
1010
1011 /* Record deletion of the surrounding text that combines with
1012 the insertion. This, together with recording the insertion,
1013 will add up to the right stuff in the undo list. */
1014 record_insert (PT, nchars);
1015 MODIFF++;
1016
1017 bcopy (string, GPT_ADDR, nbytes);
1018
1019 GAP_SIZE -= nbytes;
1020 GPT += nchars;
1021 ZV += nchars;
1022 Z += nchars;
1023 GPT_BYTE += nbytes;
1024 ZV_BYTE += nbytes;
1025 Z_BYTE += nbytes;
1026 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1027
1028 if (GPT_BYTE < GPT)
1029 abort ();
1030
1031 adjust_overlays_for_insert (PT, nchars);
1032 adjust_markers_for_insert (PT, PT_BYTE,
1033 PT + nchars, PT_BYTE + nbytes,
1034 before_markers);
1035
1036 if (BUF_INTERVALS (current_buffer) != 0)
1037 offset_intervals (current_buffer, PT, nchars);
1038
1039 if (!inherit && BUF_INTERVALS (current_buffer) != 0)
1040 set_text_properties (make_number (PT), make_number (PT + nchars),
1041 Qnil, Qnil, Qnil);
1042
1043 adjust_point (nchars, nbytes);
1044
1045 CHECK_MARKERS ();
1046 }
1047 \f
1048 /* Insert the part of the text of STRING, a Lisp object assumed to be
1049 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
1050 starting at position POS / POS_BYTE. If the text of STRING has properties,
1051 copy them into the buffer.
1052
1053 It does not work to use `insert' for this, because a GC could happen
1054 before we bcopy the stuff into the buffer, and relocate the string
1055 without insert noticing. */
1056
1057 void
1058 insert_from_string (string, pos, pos_byte, length, length_byte, inherit)
1059 Lisp_Object string;
1060 register int pos, pos_byte, length, length_byte;
1061 int inherit;
1062 {
1063 int opoint = PT;
1064 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
1065 inherit, 0);
1066 signal_after_change (opoint, 0, PT - opoint);
1067 update_compositions (opoint, PT, CHECK_BORDER);
1068 }
1069
1070 /* Like `insert_from_string' except that all markers pointing
1071 at the place where the insertion happens are adjusted to point after it. */
1072
1073 void
1074 insert_from_string_before_markers (string, pos, pos_byte,
1075 length, length_byte, inherit)
1076 Lisp_Object string;
1077 register int pos, pos_byte, length, length_byte;
1078 int inherit;
1079 {
1080 int opoint = PT;
1081 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
1082 inherit, 1);
1083 signal_after_change (opoint, 0, PT - opoint);
1084 update_compositions (opoint, PT, CHECK_BORDER);
1085 }
1086
1087 /* Subroutine of the insertion functions above. */
1088
1089 static void
1090 insert_from_string_1 (string, pos, pos_byte, nchars, nbytes,
1091 inherit, before_markers)
1092 Lisp_Object string;
1093 register int pos, pos_byte, nchars, nbytes;
1094 int inherit, before_markers;
1095 {
1096 struct gcpro gcpro1;
1097 int outgoing_nbytes = nbytes;
1098 INTERVAL intervals;
1099
1100 /* Make OUTGOING_NBYTES describe the text
1101 as it will be inserted in this buffer. */
1102
1103 if (NILP (current_buffer->enable_multibyte_characters))
1104 outgoing_nbytes = nchars;
1105 else if (! STRING_MULTIBYTE (string))
1106 outgoing_nbytes
1107 = count_size_as_multibyte (&XSTRING (string)->data[pos_byte],
1108 nbytes);
1109
1110 GCPRO1 (string);
1111 /* Do this before moving and increasing the gap,
1112 because the before-change hooks might move the gap
1113 or make it smaller. */
1114 prepare_to_modify_buffer (PT, PT, NULL);
1115
1116 if (PT != GPT)
1117 move_gap_both (PT, PT_BYTE);
1118 if (GAP_SIZE < outgoing_nbytes)
1119 make_gap (outgoing_nbytes - GAP_SIZE);
1120 UNGCPRO;
1121
1122 /* Copy the string text into the buffer, perhaps converting
1123 between single-byte and multibyte. */
1124 copy_text (XSTRING (string)->data + pos_byte, GPT_ADDR, nbytes,
1125 STRING_MULTIBYTE (string),
1126 ! NILP (current_buffer->enable_multibyte_characters));
1127
1128 #ifdef BYTE_COMBINING_DEBUG
1129 /* We have copied text into the gap, but we have not altered
1130 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1131 to these functions and get the same results as we would
1132 have got earlier on. Meanwhile, PT_ADDR does point to
1133 the text that has been stored by copy_text. */
1134 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1135 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1136 abort ();
1137 #endif
1138
1139 record_insert (PT, nchars);
1140 MODIFF++;
1141
1142 GAP_SIZE -= outgoing_nbytes;
1143 GPT += nchars;
1144 ZV += nchars;
1145 Z += nchars;
1146 GPT_BYTE += outgoing_nbytes;
1147 ZV_BYTE += outgoing_nbytes;
1148 Z_BYTE += outgoing_nbytes;
1149 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1150
1151 if (GPT_BYTE < GPT)
1152 abort ();
1153
1154 adjust_overlays_for_insert (PT, nchars);
1155 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1156 PT_BYTE + outgoing_nbytes,
1157 before_markers);
1158
1159 offset_intervals (current_buffer, PT, nchars);
1160
1161 intervals = XSTRING (string)->intervals;
1162 /* Get the intervals for the part of the string we are inserting. */
1163 if (nbytes < STRING_BYTES (XSTRING (string)))
1164 intervals = copy_intervals (intervals, pos, nchars);
1165
1166 /* Insert those intervals. */
1167 graft_intervals_into_buffer (intervals, PT, nchars,
1168 current_buffer, inherit);
1169
1170 adjust_point (nchars, outgoing_nbytes);
1171 }
1172 \f
1173 /* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
1174 current buffer. If the text in BUF has properties, they are absorbed
1175 into the current buffer.
1176
1177 It does not work to use `insert' for this, because a malloc could happen
1178 and relocate BUF's text before the bcopy happens. */
1179
1180 void
1181 insert_from_buffer (buf, charpos, nchars, inherit)
1182 struct buffer *buf;
1183 int charpos, nchars;
1184 int inherit;
1185 {
1186 int opoint = PT;
1187
1188 insert_from_buffer_1 (buf, charpos, nchars, inherit);
1189 signal_after_change (opoint, 0, PT - opoint);
1190 update_compositions (opoint, PT, CHECK_BORDER);
1191 }
1192
1193 static void
1194 insert_from_buffer_1 (buf, from, nchars, inherit)
1195 struct buffer *buf;
1196 int from, nchars;
1197 int inherit;
1198 {
1199 register Lisp_Object temp;
1200 int chunk, chunk_expanded;
1201 int from_byte = buf_charpos_to_bytepos (buf, from);
1202 int to_byte = buf_charpos_to_bytepos (buf, from + nchars);
1203 int incoming_nbytes = to_byte - from_byte;
1204 int outgoing_nbytes = incoming_nbytes;
1205 INTERVAL intervals;
1206
1207 /* Make OUTGOING_NBYTES describe the text
1208 as it will be inserted in this buffer. */
1209
1210 if (NILP (current_buffer->enable_multibyte_characters))
1211 outgoing_nbytes = nchars;
1212 else if (NILP (buf->enable_multibyte_characters))
1213 {
1214 int outgoing_before_gap = 0;
1215 int outgoing_after_gap = 0;
1216
1217 if (from < BUF_GPT (buf))
1218 {
1219 chunk = BUF_GPT_BYTE (buf) - from_byte;
1220 if (chunk > incoming_nbytes)
1221 chunk = incoming_nbytes;
1222 outgoing_before_gap
1223 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf, from_byte),
1224 chunk);
1225 }
1226 else
1227 chunk = 0;
1228
1229 if (chunk < incoming_nbytes)
1230 outgoing_after_gap
1231 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf,
1232 from_byte + chunk),
1233 incoming_nbytes - chunk);
1234
1235 outgoing_nbytes = outgoing_before_gap + outgoing_after_gap;
1236 }
1237
1238 /* Make sure point-max won't overflow after this insertion. */
1239 XSETINT (temp, outgoing_nbytes + Z);
1240 if (outgoing_nbytes + Z != XINT (temp))
1241 error ("Maximum buffer size exceeded");
1242
1243 /* Do this before moving and increasing the gap,
1244 because the before-change hooks might move the gap
1245 or make it smaller. */
1246 prepare_to_modify_buffer (PT, PT, NULL);
1247
1248 if (PT != GPT)
1249 move_gap_both (PT, PT_BYTE);
1250 if (GAP_SIZE < outgoing_nbytes)
1251 make_gap (outgoing_nbytes - GAP_SIZE);
1252
1253 if (from < BUF_GPT (buf))
1254 {
1255 chunk = BUF_GPT_BYTE (buf) - from_byte;
1256 if (chunk > incoming_nbytes)
1257 chunk = incoming_nbytes;
1258 /* Record number of output bytes, so we know where
1259 to put the output from the second copy_text. */
1260 chunk_expanded
1261 = copy_text (BUF_BYTE_ADDRESS (buf, from_byte),
1262 GPT_ADDR, chunk,
1263 ! NILP (buf->enable_multibyte_characters),
1264 ! NILP (current_buffer->enable_multibyte_characters));
1265 }
1266 else
1267 chunk_expanded = chunk = 0;
1268
1269 if (chunk < incoming_nbytes)
1270 copy_text (BUF_BYTE_ADDRESS (buf, from_byte + chunk),
1271 GPT_ADDR + chunk_expanded, incoming_nbytes - chunk,
1272 ! NILP (buf->enable_multibyte_characters),
1273 ! NILP (current_buffer->enable_multibyte_characters));
1274
1275 #ifdef BYTE_COMBINING_DEBUG
1276 /* We have copied text into the gap, but we have not altered
1277 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1278 to these functions and get the same results as we would
1279 have got earlier on. Meanwhile, GPT_ADDR does point to
1280 the text that has been stored by copy_text. */
1281 if (count_combining_before (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE)
1282 || count_combining_after (GPT_ADDR, outgoing_nbytes, PT, PT_BYTE))
1283 abort ();
1284 #endif
1285
1286 record_insert (PT, nchars);
1287 MODIFF++;
1288
1289 GAP_SIZE -= outgoing_nbytes;
1290 GPT += nchars;
1291 ZV += nchars;
1292 Z += nchars;
1293 GPT_BYTE += outgoing_nbytes;
1294 ZV_BYTE += outgoing_nbytes;
1295 Z_BYTE += outgoing_nbytes;
1296 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1297
1298 if (GPT_BYTE < GPT)
1299 abort ();
1300
1301 adjust_overlays_for_insert (PT, nchars);
1302 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1303 PT_BYTE + outgoing_nbytes,
1304 0);
1305
1306 if (BUF_INTERVALS (current_buffer) != 0)
1307 offset_intervals (current_buffer, PT, nchars);
1308
1309 /* Get the intervals for the part of the string we are inserting. */
1310 intervals = BUF_INTERVALS (buf);
1311 if (outgoing_nbytes < BUF_Z_BYTE (buf) - BUF_BEG_BYTE (buf))
1312 {
1313 if (buf == current_buffer && PT <= from)
1314 from += nchars;
1315 intervals = copy_intervals (intervals, from, nchars);
1316 }
1317
1318 /* Insert those intervals. */
1319 graft_intervals_into_buffer (intervals, PT, nchars, current_buffer, inherit);
1320
1321 adjust_point (nchars, outgoing_nbytes);
1322 }
1323 \f
1324 /* Record undo information and adjust markers and position keepers for
1325 a replacement of a text PREV_TEXT at FROM to a new text of LEN
1326 chars (LEN_BYTE bytes) which resides in the gap just after
1327 GPT_ADDR.
1328
1329 PREV_TEXT nil means the new text was just inserted. */
1330
1331 void
1332 adjust_after_replace (from, from_byte, prev_text, len, len_byte)
1333 int from, from_byte, len, len_byte;
1334 Lisp_Object prev_text;
1335 {
1336 int nchars_del = 0, nbytes_del = 0;
1337
1338 #ifdef BYTE_COMBINING_DEBUG
1339 if (count_combining_before (GPT_ADDR, len_byte, from, from_byte)
1340 || count_combining_after (GPT_ADDR, len_byte, from, from_byte))
1341 abort ();
1342 #endif
1343
1344 if (STRINGP (prev_text))
1345 {
1346 nchars_del = XSTRING (prev_text)->size;
1347 nbytes_del = STRING_BYTES (XSTRING (prev_text));
1348 }
1349
1350 /* Update various buffer positions for the new text. */
1351 GAP_SIZE -= len_byte;
1352 ZV += len; Z+= len;
1353 ZV_BYTE += len_byte; Z_BYTE += len_byte;
1354 GPT += len; GPT_BYTE += len_byte;
1355 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1356
1357 if (nchars_del > 0)
1358 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1359 len, len_byte);
1360 else
1361 adjust_markers_for_insert (from, from_byte,
1362 from + len, from_byte + len_byte, 0);
1363
1364 if (! EQ (current_buffer->undo_list, Qt))
1365 {
1366 if (nchars_del > 0)
1367 record_delete (from, prev_text);
1368 record_insert (from, len);
1369 }
1370
1371 if (len > nchars_del)
1372 adjust_overlays_for_insert (from, len - nchars_del);
1373 else if (len < nchars_del)
1374 adjust_overlays_for_delete (from, nchars_del - len);
1375 if (BUF_INTERVALS (current_buffer) != 0)
1376 {
1377 offset_intervals (current_buffer, from, len - nchars_del);
1378 }
1379
1380 if (from < PT)
1381 adjust_point (len - nchars_del, len_byte - nbytes_del);
1382
1383 /* As byte combining will decrease Z, we must check this again. */
1384 if (Z - GPT < END_UNCHANGED)
1385 END_UNCHANGED = Z - GPT;
1386
1387 CHECK_MARKERS ();
1388
1389 if (len == 0)
1390 evaporate_overlays (from);
1391 MODIFF++;
1392 }
1393
1394 /* Record undo information, adjust markers and position keepers for an
1395 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1396 text already exists in the current buffer but character length (TO
1397 - FROM) may be incorrect, the correct length is NEWLEN. */
1398
1399 void
1400 adjust_after_insert (from, from_byte, to, to_byte, newlen)
1401 int from, from_byte, to, to_byte, newlen;
1402 {
1403 int len = to - from, len_byte = to_byte - from_byte;
1404
1405 if (GPT != to)
1406 move_gap_both (to, to_byte);
1407 GAP_SIZE += len_byte;
1408 GPT -= len; GPT_BYTE -= len_byte;
1409 ZV -= len; ZV_BYTE -= len_byte;
1410 Z -= len; Z_BYTE -= len_byte;
1411 adjust_after_replace (from, from_byte, Qnil, newlen, len_byte);
1412 }
1413
1414 /* Replace the text from character positions FROM to TO with NEW,
1415 If PREPARE is nonzero, call prepare_to_modify_buffer.
1416 If INHERIT, the newly inserted text should inherit text properties
1417 from the surrounding non-deleted text. */
1418
1419 /* Note that this does not yet handle markers quite right.
1420 Also it needs to record a single undo-entry that does a replacement
1421 rather than a separate delete and insert.
1422 That way, undo will also handle markers properly.
1423
1424 But if MARKERS is 0, don't relocate markers. */
1425
1426 void
1427 replace_range (from, to, new, prepare, inherit, markers)
1428 Lisp_Object new;
1429 int from, to, prepare, inherit, markers;
1430 {
1431 int inschars = XSTRING (new)->size;
1432 int insbytes = STRING_BYTES (XSTRING (new));
1433 int from_byte, to_byte;
1434 int nbytes_del, nchars_del;
1435 register Lisp_Object temp;
1436 struct gcpro gcpro1;
1437 INTERVAL intervals;
1438 int outgoing_insbytes = insbytes;
1439 Lisp_Object deletion;
1440
1441 CHECK_MARKERS ();
1442
1443 GCPRO1 (new);
1444 deletion = Qnil;
1445
1446 if (prepare)
1447 {
1448 int range_length = to - from;
1449 prepare_to_modify_buffer (from, to, &from);
1450 to = from + range_length;
1451 }
1452
1453 UNGCPRO;
1454
1455 /* Make args be valid */
1456 if (from < BEGV)
1457 from = BEGV;
1458 if (to > ZV)
1459 to = ZV;
1460
1461 from_byte = CHAR_TO_BYTE (from);
1462 to_byte = CHAR_TO_BYTE (to);
1463
1464 nchars_del = to - from;
1465 nbytes_del = to_byte - from_byte;
1466
1467 if (nbytes_del <= 0 && insbytes == 0)
1468 return;
1469
1470 /* Make OUTGOING_INSBYTES describe the text
1471 as it will be inserted in this buffer. */
1472
1473 if (NILP (current_buffer->enable_multibyte_characters))
1474 outgoing_insbytes = inschars;
1475 else if (! STRING_MULTIBYTE (new))
1476 outgoing_insbytes
1477 = count_size_as_multibyte (XSTRING (new)->data, insbytes);
1478
1479 /* Make sure point-max won't overflow after this insertion. */
1480 XSETINT (temp, Z_BYTE - nbytes_del + insbytes);
1481 if (Z_BYTE - nbytes_del + insbytes != XINT (temp))
1482 error ("Maximum buffer size exceeded");
1483
1484 GCPRO1 (new);
1485
1486 /* Make sure the gap is somewhere in or next to what we are deleting. */
1487 if (from > GPT)
1488 gap_right (from, from_byte);
1489 if (to < GPT)
1490 gap_left (to, to_byte, 0);
1491
1492 /* Even if we don't record for undo, we must keep the original text
1493 because we may have to recover it because of inappropriate byte
1494 combining. */
1495 if (! EQ (current_buffer->undo_list, Qt))
1496 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1497
1498 GAP_SIZE += nbytes_del;
1499 ZV -= nchars_del;
1500 Z -= nchars_del;
1501 ZV_BYTE -= nbytes_del;
1502 Z_BYTE -= nbytes_del;
1503 GPT = from;
1504 GPT_BYTE = from_byte;
1505 *(GPT_ADDR) = 0; /* Put an anchor. */
1506
1507 if (GPT_BYTE < GPT)
1508 abort ();
1509
1510 if (GPT - BEG < BEG_UNCHANGED)
1511 BEG_UNCHANGED = GPT - BEG;
1512 if (Z - GPT < END_UNCHANGED)
1513 END_UNCHANGED = Z - GPT;
1514
1515 if (GAP_SIZE < insbytes)
1516 make_gap (insbytes - GAP_SIZE);
1517
1518 /* Copy the string text into the buffer, perhaps converting
1519 between single-byte and multibyte. */
1520 copy_text (XSTRING (new)->data, GPT_ADDR, insbytes,
1521 STRING_MULTIBYTE (new),
1522 ! NILP (current_buffer->enable_multibyte_characters));
1523
1524 #ifdef BYTE_COMBINING_DEBUG
1525 /* We have copied text into the gap, but we have not marked
1526 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1527 here, for both the previous text and the following text.
1528 Meanwhile, GPT_ADDR does point to
1529 the text that has been stored by copy_text. */
1530 if (count_combining_before (GPT_ADDR, outgoing_insbytes, from, from_byte)
1531 || count_combining_after (GPT_ADDR, outgoing_insbytes, from, from_byte))
1532 abort ();
1533 #endif
1534
1535 if (! EQ (current_buffer->undo_list, Qt))
1536 {
1537 record_delete (from, deletion);
1538 record_insert (from, inschars);
1539 }
1540
1541 GAP_SIZE -= outgoing_insbytes;
1542 GPT += inschars;
1543 ZV += inschars;
1544 Z += inschars;
1545 GPT_BYTE += outgoing_insbytes;
1546 ZV_BYTE += outgoing_insbytes;
1547 Z_BYTE += outgoing_insbytes;
1548 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1549
1550 if (GPT_BYTE < GPT)
1551 abort ();
1552
1553 /* Adjust the overlay center as needed. This must be done after
1554 adjusting the markers that bound the overlays. */
1555 adjust_overlays_for_delete (from, nchars_del);
1556 adjust_overlays_for_insert (from, inschars);
1557
1558 /* Adjust markers for the deletion and the insertion. */
1559 if (markers)
1560 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1561 inschars, outgoing_insbytes);
1562
1563 offset_intervals (current_buffer, from, inschars - nchars_del);
1564
1565 /* Get the intervals for the part of the string we are inserting--
1566 not including the combined-before bytes. */
1567 intervals = XSTRING (new)->intervals;
1568 /* Insert those intervals. */
1569 graft_intervals_into_buffer (intervals, from, inschars,
1570 current_buffer, inherit);
1571
1572 /* Relocate point as if it were a marker. */
1573 if (from < PT)
1574 adjust_point ((from + inschars - (PT < to ? PT : to)),
1575 (from_byte + outgoing_insbytes
1576 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
1577
1578 if (outgoing_insbytes == 0)
1579 evaporate_overlays (from);
1580
1581 CHECK_MARKERS ();
1582
1583 MODIFF++;
1584 UNGCPRO;
1585
1586 signal_after_change (from, nchars_del, GPT - from);
1587 update_compositions (from, GPT, CHECK_BORDER);
1588 }
1589 \f
1590 /* Delete characters in current buffer
1591 from FROM up to (but not including) TO.
1592 If TO comes before FROM, we delete nothing. */
1593
1594 void
1595 del_range (from, to)
1596 register int from, to;
1597 {
1598 del_range_1 (from, to, 1, 0);
1599 }
1600
1601 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1602 RET_STRING says to return the deleted text. */
1603
1604 Lisp_Object
1605 del_range_1 (from, to, prepare, ret_string)
1606 int from, to, prepare, ret_string;
1607 {
1608 int from_byte, to_byte;
1609 Lisp_Object deletion;
1610 struct gcpro gcpro1;
1611
1612 /* Make args be valid */
1613 if (from < BEGV)
1614 from = BEGV;
1615 if (to > ZV)
1616 to = ZV;
1617
1618 if (to <= from)
1619 return Qnil;
1620
1621 if (prepare)
1622 {
1623 int range_length = to - from;
1624 prepare_to_modify_buffer (from, to, &from);
1625 to = min (ZV, from + range_length);
1626 }
1627
1628 from_byte = CHAR_TO_BYTE (from);
1629 to_byte = CHAR_TO_BYTE (to);
1630
1631 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
1632 GCPRO1(deletion);
1633 signal_after_change (from, to - from, 0);
1634 update_compositions (from, from, CHECK_HEAD);
1635 UNGCPRO;
1636 return deletion;
1637 }
1638
1639 /* Like del_range_1 but args are byte positions, not char positions. */
1640
1641 void
1642 del_range_byte (from_byte, to_byte, prepare)
1643 int from_byte, to_byte, prepare;
1644 {
1645 int from, to;
1646
1647 /* Make args be valid */
1648 if (from_byte < BEGV_BYTE)
1649 from_byte = BEGV_BYTE;
1650 if (to_byte > ZV_BYTE)
1651 to_byte = ZV_BYTE;
1652
1653 if (to_byte <= from_byte)
1654 return;
1655
1656 from = BYTE_TO_CHAR (from_byte);
1657 to = BYTE_TO_CHAR (to_byte);
1658
1659 if (prepare)
1660 {
1661 int old_from = from, old_to = Z - to;
1662 int range_length = to - from;
1663 prepare_to_modify_buffer (from, to, &from);
1664 to = from + range_length;
1665
1666 if (old_from != from)
1667 from_byte = CHAR_TO_BYTE (from);
1668 if (to > ZV)
1669 {
1670 to = ZV;
1671 to_byte = ZV_BYTE;
1672 }
1673 else if (old_to == Z - to)
1674 to_byte = CHAR_TO_BYTE (to);
1675 }
1676
1677 del_range_2 (from, from_byte, to, to_byte, 0);
1678 signal_after_change (from, to - from, 0);
1679 update_compositions (from, from, CHECK_HEAD);
1680 }
1681
1682 /* Like del_range_1, but positions are specified both as charpos
1683 and bytepos. */
1684
1685 void
1686 del_range_both (from, from_byte, to, to_byte, prepare)
1687 int from, from_byte, to, to_byte, prepare;
1688 {
1689 /* Make args be valid */
1690 if (from_byte < BEGV_BYTE)
1691 from_byte = BEGV_BYTE;
1692 if (to_byte > ZV_BYTE)
1693 to_byte = ZV_BYTE;
1694
1695 if (to_byte <= from_byte)
1696 return;
1697
1698 if (from < BEGV)
1699 from = BEGV;
1700 if (to > ZV)
1701 to = ZV;
1702
1703 if (prepare)
1704 {
1705 int old_from = from, old_to = Z - to;
1706 int range_length = to - from;
1707 prepare_to_modify_buffer (from, to, &from);
1708 to = from + range_length;
1709
1710 if (old_from != from)
1711 from_byte = CHAR_TO_BYTE (from);
1712 if (to > ZV)
1713 {
1714 to = ZV;
1715 to_byte = ZV_BYTE;
1716 }
1717 else if (old_to == Z - to)
1718 to_byte = CHAR_TO_BYTE (to);
1719 }
1720
1721 del_range_2 (from, from_byte, to, to_byte, 0);
1722 signal_after_change (from, to - from, 0);
1723 update_compositions (from, from, CHECK_HEAD);
1724 }
1725
1726 /* Delete a range of text, specified both as character positions
1727 and byte positions. FROM and TO are character positions,
1728 while FROM_BYTE and TO_BYTE are byte positions.
1729 If RET_STRING is true, the deleted area is returned as a string. */
1730
1731 Lisp_Object
1732 del_range_2 (from, from_byte, to, to_byte, ret_string)
1733 int from, from_byte, to, to_byte, ret_string;
1734 {
1735 register int nbytes_del, nchars_del;
1736 Lisp_Object deletion;
1737
1738 CHECK_MARKERS ();
1739
1740 nchars_del = to - from;
1741 nbytes_del = to_byte - from_byte;
1742
1743 /* Make sure the gap is somewhere in or next to what we are deleting. */
1744 if (from > GPT)
1745 gap_right (from, from_byte);
1746 if (to < GPT)
1747 gap_left (to, to_byte, 0);
1748
1749 #ifdef BYTE_COMBINING_DEBUG
1750 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer, to_byte),
1751 Z_BYTE - to_byte, from, from_byte))
1752 abort ();
1753 #endif
1754
1755 if (ret_string || ! EQ (current_buffer->undo_list, Qt))
1756 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1757 else
1758 deletion = Qnil;
1759
1760 /* Relocate all markers pointing into the new, larger gap
1761 to point at the end of the text before the gap.
1762 Do this before recording the deletion,
1763 so that undo handles this after reinserting the text. */
1764 adjust_markers_for_delete (from, from_byte, to, to_byte);
1765
1766 if (! EQ (current_buffer->undo_list, Qt))
1767 record_delete (from, deletion);
1768 MODIFF++;
1769
1770 /* Relocate point as if it were a marker. */
1771 if (from < PT)
1772 adjust_point (from - (PT < to ? PT : to),
1773 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
1774
1775 offset_intervals (current_buffer, from, - nchars_del);
1776
1777 /* Adjust the overlay center as needed. This must be done after
1778 adjusting the markers that bound the overlays. */
1779 adjust_overlays_for_delete (from, nchars_del);
1780
1781 GAP_SIZE += nbytes_del;
1782 ZV_BYTE -= nbytes_del;
1783 Z_BYTE -= nbytes_del;
1784 ZV -= nchars_del;
1785 Z -= nchars_del;
1786 GPT = from;
1787 GPT_BYTE = from_byte;
1788 *(GPT_ADDR) = 0; /* Put an anchor. */
1789
1790 if (GPT_BYTE < GPT)
1791 abort ();
1792
1793 if (GPT - BEG < BEG_UNCHANGED)
1794 BEG_UNCHANGED = GPT - BEG;
1795 if (Z - GPT < END_UNCHANGED)
1796 END_UNCHANGED = Z - GPT;
1797
1798 CHECK_MARKERS ();
1799
1800 evaporate_overlays (from);
1801
1802 return deletion;
1803 }
1804 \f
1805 /* Call this if you're about to change the region of BUFFER from
1806 character positions START to END. This checks the read-only
1807 properties of the region, calls the necessary modification hooks,
1808 and warns the next redisplay that it should pay attention to that
1809 area. */
1810
1811 void
1812 modify_region (buffer, start, end)
1813 struct buffer *buffer;
1814 int start, end;
1815 {
1816 struct buffer *old_buffer = current_buffer;
1817
1818 if (buffer != old_buffer)
1819 set_buffer_internal (buffer);
1820
1821 prepare_to_modify_buffer (start, end, NULL);
1822
1823 BUF_COMPUTE_UNCHANGED (buffer, start - 1, end);
1824
1825 if (MODIFF <= SAVE_MODIFF)
1826 record_first_change ();
1827 MODIFF++;
1828
1829 buffer->point_before_scroll = Qnil;
1830
1831 if (buffer != old_buffer)
1832 set_buffer_internal (old_buffer);
1833 }
1834 \f
1835 /* Check that it is okay to modify the buffer between START and END,
1836 which are char positions.
1837
1838 Run the before-change-function, if any. If intervals are in use,
1839 verify that the text to be modified is not read-only, and call
1840 any modification properties the text may have.
1841
1842 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1843 by holding its value temporarily in a marker. */
1844
1845 void
1846 prepare_to_modify_buffer (start, end, preserve_ptr)
1847 int start, end;
1848 int *preserve_ptr;
1849 {
1850 if (!NILP (current_buffer->read_only))
1851 Fbarf_if_buffer_read_only ();
1852
1853 /* Let redisplay consider other windows than selected_window
1854 if modifying another buffer. */
1855 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1856 ++windows_or_buffers_changed;
1857
1858 if (BUF_INTERVALS (current_buffer) != 0)
1859 {
1860 if (preserve_ptr)
1861 {
1862 Lisp_Object preserve_marker;
1863 struct gcpro gcpro1;
1864 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil);
1865 GCPRO1 (preserve_marker);
1866 verify_interval_modification (current_buffer, start, end);
1867 *preserve_ptr = marker_position (preserve_marker);
1868 unchain_marker (preserve_marker);
1869 UNGCPRO;
1870 }
1871 else
1872 verify_interval_modification (current_buffer, start, end);
1873 }
1874
1875 #ifdef CLASH_DETECTION
1876 if (!NILP (current_buffer->file_truename)
1877 /* Make binding buffer-file-name to nil effective. */
1878 && !NILP (current_buffer->filename)
1879 && SAVE_MODIFF >= MODIFF)
1880 lock_file (current_buffer->file_truename);
1881 #else
1882 /* At least warn if this file has changed on disk since it was visited. */
1883 if (!NILP (current_buffer->filename)
1884 && SAVE_MODIFF >= MODIFF
1885 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
1886 && !NILP (Ffile_exists_p (current_buffer->filename)))
1887 call1 (intern ("ask-user-about-supersession-threat"),
1888 current_buffer->filename);
1889 #endif /* not CLASH_DETECTION */
1890
1891 signal_before_change (start, end, preserve_ptr);
1892
1893 if (current_buffer->newline_cache)
1894 invalidate_region_cache (current_buffer,
1895 current_buffer->newline_cache,
1896 start - BEG, Z - end);
1897 if (current_buffer->width_run_cache)
1898 invalidate_region_cache (current_buffer,
1899 current_buffer->width_run_cache,
1900 start - BEG, Z - end);
1901
1902 Vdeactivate_mark = Qt;
1903 }
1904 \f
1905 /* These macros work with an argument named `preserve_ptr'
1906 and a local variable named `preserve_marker'. */
1907
1908 #define PRESERVE_VALUE \
1909 if (preserve_ptr && NILP (preserve_marker)) \
1910 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1911
1912 #define RESTORE_VALUE \
1913 if (! NILP (preserve_marker)) \
1914 { \
1915 *preserve_ptr = marker_position (preserve_marker); \
1916 unchain_marker (preserve_marker); \
1917 }
1918
1919 #define PRESERVE_START_END \
1920 if (NILP (start_marker)) \
1921 start_marker = Fcopy_marker (start, Qnil); \
1922 if (NILP (end_marker)) \
1923 end_marker = Fcopy_marker (end, Qnil);
1924
1925 #define FETCH_START \
1926 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1927
1928 #define FETCH_END \
1929 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1930
1931 /* Signal a change to the buffer immediately before it happens.
1932 START_INT and END_INT are the bounds of the text to be changed.
1933
1934 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1935 by holding its value temporarily in a marker. */
1936
1937 void
1938 signal_before_change (start_int, end_int, preserve_ptr)
1939 int start_int, end_int;
1940 int *preserve_ptr;
1941 {
1942 Lisp_Object start, end;
1943 Lisp_Object start_marker, end_marker;
1944 Lisp_Object preserve_marker;
1945 struct gcpro gcpro1, gcpro2, gcpro3;
1946
1947 if (inhibit_modification_hooks)
1948 return;
1949
1950 start = make_number (start_int);
1951 end = make_number (end_int);
1952 preserve_marker = Qnil;
1953 start_marker = Qnil;
1954 end_marker = Qnil;
1955 GCPRO3 (preserve_marker, start_marker, end_marker);
1956
1957 /* If buffer is unmodified, run a special hook for that case. */
1958 if (SAVE_MODIFF >= MODIFF
1959 && !NILP (Vfirst_change_hook)
1960 && !NILP (Vrun_hooks))
1961 {
1962 PRESERVE_VALUE;
1963 PRESERVE_START_END;
1964 call1 (Vrun_hooks, Qfirst_change_hook);
1965 }
1966
1967 /* Now run the before-change-functions if any. */
1968 if (!NILP (Vbefore_change_functions))
1969 {
1970 Lisp_Object args[3];
1971 Lisp_Object before_change_functions;
1972 Lisp_Object after_change_functions;
1973 struct gcpro gcpro1, gcpro2;
1974 struct buffer *old = current_buffer;
1975 struct buffer *new;
1976
1977 PRESERVE_VALUE;
1978 PRESERVE_START_END;
1979
1980 /* "Bind" before-change-functions and after-change-functions
1981 to nil--but in a way that errors don't know about.
1982 That way, if there's an error in them, they will stay nil. */
1983 before_change_functions = Vbefore_change_functions;
1984 after_change_functions = Vafter_change_functions;
1985 Vbefore_change_functions = Qnil;
1986 Vafter_change_functions = Qnil;
1987 GCPRO2 (before_change_functions, after_change_functions);
1988
1989 /* Actually run the hook functions. */
1990 args[0] = Qbefore_change_functions;
1991 args[1] = FETCH_START;
1992 args[2] = FETCH_END;
1993 run_hook_list_with_args (before_change_functions, 3, args);
1994
1995 /* "Unbind" the variables we "bound" to nil. Beware a
1996 buffer-local hook which changes the buffer when run (e.g. W3). */
1997 if (old != current_buffer)
1998 {
1999 new = current_buffer;
2000 set_buffer_internal (old);
2001 Vbefore_change_functions = before_change_functions;
2002 Vafter_change_functions = after_change_functions;
2003 set_buffer_internal (new);
2004 }
2005 else
2006 {
2007 Vbefore_change_functions = before_change_functions;
2008 Vafter_change_functions = after_change_functions;
2009 }
2010 UNGCPRO;
2011 }
2012
2013 if (!NILP (current_buffer->overlays_before)
2014 || !NILP (current_buffer->overlays_after))
2015 {
2016 PRESERVE_VALUE;
2017 report_overlay_modification (FETCH_START, FETCH_END, 0,
2018 FETCH_START, FETCH_END, Qnil);
2019 }
2020
2021 if (! NILP (start_marker))
2022 free_marker (start_marker);
2023 if (! NILP (end_marker))
2024 free_marker (end_marker);
2025 RESTORE_VALUE;
2026 UNGCPRO;
2027 }
2028
2029 /* Signal a change immediately after it happens.
2030 CHARPOS is the character position of the start of the changed text.
2031 LENDEL is the number of characters of the text before the change.
2032 (Not the whole buffer; just the part that was changed.)
2033 LENINS is the number of characters in that part of the text
2034 after the change. */
2035
2036 void
2037 signal_after_change (charpos, lendel, lenins)
2038 int charpos, lendel, lenins;
2039 {
2040 if (inhibit_modification_hooks)
2041 return;
2042
2043 /* If we are deferring calls to the after-change functions
2044 and there are no before-change functions,
2045 just record the args that we were going to use. */
2046 if (! NILP (Vcombine_after_change_calls)
2047 && NILP (Vbefore_change_functions)
2048 && NILP (current_buffer->overlays_before)
2049 && NILP (current_buffer->overlays_after))
2050 {
2051 Lisp_Object elt;
2052
2053 if (!NILP (combine_after_change_list)
2054 && current_buffer != XBUFFER (combine_after_change_buffer))
2055 Fcombine_after_change_execute ();
2056
2057 elt = Fcons (make_number (charpos - BEG),
2058 Fcons (make_number (Z - (charpos - lendel + lenins)),
2059 Fcons (make_number (lenins - lendel), Qnil)));
2060 combine_after_change_list
2061 = Fcons (elt, combine_after_change_list);
2062 combine_after_change_buffer = Fcurrent_buffer ();
2063
2064 return;
2065 }
2066
2067 if (!NILP (combine_after_change_list))
2068 Fcombine_after_change_execute ();
2069
2070 if (!NILP (Vafter_change_functions))
2071 {
2072 Lisp_Object args[4];
2073 Lisp_Object before_change_functions;
2074 Lisp_Object after_change_functions;
2075 struct buffer *old = current_buffer;
2076 struct buffer *new;
2077 struct gcpro gcpro1, gcpro2;
2078
2079 /* "Bind" before-change-functions and after-change-functions
2080 to nil--but in a way that errors don't know about.
2081 That way, if there's an error in them, they will stay nil. */
2082 before_change_functions = Vbefore_change_functions;
2083 after_change_functions = Vafter_change_functions;
2084 Vbefore_change_functions = Qnil;
2085 Vafter_change_functions = Qnil;
2086 GCPRO2 (before_change_functions, after_change_functions);
2087
2088 /* Actually run the hook functions. */
2089 args[0] = Qafter_change_functions;
2090 XSETFASTINT (args[1], charpos);
2091 XSETFASTINT (args[2], charpos + lenins);
2092 XSETFASTINT (args[3], lendel);
2093 run_hook_list_with_args (after_change_functions,
2094 4, args);
2095
2096 /* "Unbind" the variables we "bound" to nil. Beware a
2097 buffer-local hook which changes the buffer when run (e.g. W3). */
2098 if (old != current_buffer)
2099 {
2100 new = current_buffer;
2101 set_buffer_internal (old);
2102 Vbefore_change_functions = before_change_functions;
2103 Vafter_change_functions = after_change_functions;
2104 set_buffer_internal (new);
2105 }
2106 else
2107 {
2108 Vbefore_change_functions = before_change_functions;
2109 Vafter_change_functions = after_change_functions;
2110 }
2111 UNGCPRO;
2112 }
2113
2114 if (!NILP (current_buffer->overlays_before)
2115 || !NILP (current_buffer->overlays_after))
2116 report_overlay_modification (make_number (charpos),
2117 make_number (charpos + lenins),
2118 1,
2119 make_number (charpos),
2120 make_number (charpos + lenins),
2121 make_number (lendel));
2122
2123 /* After an insertion, call the text properties
2124 insert-behind-hooks or insert-in-front-hooks. */
2125 if (lendel == 0)
2126 report_interval_modification (make_number (charpos),
2127 make_number (charpos + lenins));
2128 }
2129
2130 Lisp_Object
2131 Fcombine_after_change_execute_1 (val)
2132 Lisp_Object val;
2133 {
2134 Vcombine_after_change_calls = val;
2135 return val;
2136 }
2137
2138 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
2139 Scombine_after_change_execute, 0, 0, 0,
2140 doc: /* This function is for use internally in `combine-after-change-calls'. */)
2141 ()
2142 {
2143 int count = specpdl_ptr - specpdl;
2144 int beg, end, change;
2145 int begpos, endpos;
2146 Lisp_Object tail;
2147
2148 if (NILP (combine_after_change_list))
2149 return Qnil;
2150
2151 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
2152
2153 Fset_buffer (combine_after_change_buffer);
2154
2155 /* # chars unchanged at beginning of buffer. */
2156 beg = Z - BEG;
2157 /* # chars unchanged at end of buffer. */
2158 end = beg;
2159 /* Total amount of insertion (negative for deletion). */
2160 change = 0;
2161
2162 /* Scan the various individual changes,
2163 accumulating the range info in BEG, END and CHANGE. */
2164 for (tail = combine_after_change_list; CONSP (tail);
2165 tail = XCDR (tail))
2166 {
2167 Lisp_Object elt;
2168 int thisbeg, thisend, thischange;
2169
2170 /* Extract the info from the next element. */
2171 elt = XCAR (tail);
2172 if (! CONSP (elt))
2173 continue;
2174 thisbeg = XINT (XCAR (elt));
2175
2176 elt = XCDR (elt);
2177 if (! CONSP (elt))
2178 continue;
2179 thisend = XINT (XCAR (elt));
2180
2181 elt = XCDR (elt);
2182 if (! CONSP (elt))
2183 continue;
2184 thischange = XINT (XCAR (elt));
2185
2186 /* Merge this range into the accumulated range. */
2187 change += thischange;
2188 if (thisbeg < beg)
2189 beg = thisbeg;
2190 if (thisend < end)
2191 end = thisend;
2192 }
2193
2194 /* Get the current start and end positions of the range
2195 that was changed. */
2196 begpos = BEG + beg;
2197 endpos = Z - end;
2198
2199 /* We are about to handle these, so discard them. */
2200 combine_after_change_list = Qnil;
2201
2202 /* Now run the after-change functions for real.
2203 Turn off the flag that defers them. */
2204 record_unwind_protect (Fcombine_after_change_execute_1,
2205 Vcombine_after_change_calls);
2206 signal_after_change (begpos, endpos - begpos - change, endpos - begpos);
2207 update_compositions (begpos, endpos, CHECK_ALL);
2208
2209 return unbind_to (count, Qnil);
2210 }
2211 \f
2212 void
2213 syms_of_insdel ()
2214 {
2215 staticpro (&combine_after_change_list);
2216 combine_after_change_list = Qnil;
2217 combine_after_change_buffer = Qnil;
2218
2219 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag,
2220 doc: /* Non-nil means enable debugging checks for invalid marker positions. */);
2221 check_markers_debug_flag = 0;
2222 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls,
2223 doc: /* Used internally by the `combine-after-change-calls' macro. */);
2224 Vcombine_after_change_calls = Qnil;
2225
2226 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks,
2227 doc: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2228 This affects `before-change-functions' and `after-change-functions',
2229 as well as hooks attached to text properties and overlays. */);
2230 inhibit_modification_hooks = 0;
2231 Qinhibit_modification_hooks = intern ("inhibit-modification-hooks");
2232 staticpro (&Qinhibit_modification_hooks);
2233
2234 defsubr (&Scombine_after_change_execute);
2235 }