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