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