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