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