1 /* Buffer insertion/deletion and gap motion for GNU Emacs.
2 Copyright (C) 1985-1986, 1993-1995, 1997-2013 Free Software
5 This file is part of GNU Emacs.
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.
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.
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/>. */
26 #include "intervals.h"
27 #include "character.h"
30 #include "blockinput.h"
31 #include "region-cache.h"
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);
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.
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
;
51 /* Buffer which combine_after_change_list is about. */
52 static Lisp_Object combine_after_change_buffer
;
54 Lisp_Object Qinhibit_modification_hooks
;
56 static void signal_before_change (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
58 /* Also used in marker.c to enable expensive marker checks. */
65 struct Lisp_Marker
*tail
;
66 bool multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
68 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
70 if (tail
->buffer
->text
!= current_buffer
->text
)
72 if (tail
->charpos
> Z
)
74 if (tail
->bytepos
> Z_BYTE
)
76 if (multibyte
&& ! CHAR_HEAD_P (FETCH_BYTE (tail
->bytepos
)))
81 #else /* not MARKER_DEBUG */
83 #define check_markers() do { } while (0)
85 #endif /* MARKER_DEBUG */
87 /* Move gap to byte position BYTEPOS, which is also char position CHARPOS.
88 Note that this can quit! */
91 move_gap_both (ptrdiff_t charpos
, ptrdiff_t bytepos
)
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
);
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. */
107 gap_left (ptrdiff_t charpos
, ptrdiff_t bytepos
, bool newgap
)
109 unsigned char *to
, *from
;
114 BUF_COMPUTE_UNCHANGED (current_buffer
, charpos
, GPT
);
121 /* Now copy the characters. To move the gap down,
122 copy characters up. */
126 /* I gets number of characters left to copy. */
127 i
= new_s1
- bytepos
;
130 /* If a quit is requested, stop copying now.
131 Change BYTEPOS to be where we have actually moved the gap to. */
135 charpos
= BYTE_TO_CHAR (bytepos
);
138 /* Move at most 32000 chars before checking again for a quit. */
143 memmove (to
, from
, i
);
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. */
151 eassert (charpos
<= bytepos
);
152 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
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. */
161 gap_right (ptrdiff_t charpos
, ptrdiff_t bytepos
)
163 register unsigned char *to
, *from
;
164 register ptrdiff_t i
;
167 BUF_COMPUTE_UNCHANGED (current_buffer
, charpos
, GPT
);
174 /* Now copy the characters. To move the gap up,
175 copy characters down. */
179 /* I gets number of characters left to copy. */
180 i
= bytepos
- new_s1
;
183 /* If a quit is requested, stop copying now.
184 Change BYTEPOS to be where we have actually moved the gap to. */
188 charpos
= BYTE_TO_CHAR (bytepos
);
191 /* Move at most 32000 chars before checking again for a quit. */
195 memmove (to
, from
, i
);
201 eassert (charpos
<= bytepos
);
202 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
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.
210 This function assumes that the gap is adjacent to
211 or inside of the range being deleted. */
214 adjust_markers_for_delete (ptrdiff_t from
, ptrdiff_t from_byte
,
215 ptrdiff_t to
, ptrdiff_t to_byte
)
218 register struct Lisp_Marker
*m
;
219 register ptrdiff_t charpos
;
221 for (m
= BUF_MARKERS (current_buffer
); m
; m
= m
->next
)
223 charpos
= m
->charpos
;
224 eassert (charpos
<= Z
);
226 /* If the marker is after the deletion,
227 relocate by number of chars / bytes deleted. */
230 m
->charpos
-= to
- from
;
231 m
->bytepos
-= to_byte
- from_byte
;
233 /* Here's the case where a marker is inside text being deleted. */
234 else if (charpos
> from
)
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
);
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
);
251 m
->bytepos
= from_byte
;
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
)
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
);
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).
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. */
277 adjust_markers_for_insert (ptrdiff_t from
, ptrdiff_t from_byte
,
278 ptrdiff_t to
, ptrdiff_t to_byte
, bool before_markers
)
280 struct Lisp_Marker
*m
;
282 ptrdiff_t nchars
= to
- from
;
283 ptrdiff_t nbytes
= to_byte
- from_byte
;
285 for (m
= BUF_MARKERS (current_buffer
); m
; m
= m
->next
)
287 eassert (m
->bytepos
>= m
->charpos
288 && m
->bytepos
- m
->charpos
<= Z_BYTE
- Z
);
290 if (m
->bytepos
== from_byte
)
292 if (m
->insertion_type
|| before_markers
)
294 m
->bytepos
= to_byte
;
296 if (m
->insertion_type
)
300 else if (m
->bytepos
> from_byte
)
302 m
->bytepos
+= nbytes
;
303 m
->charpos
+= nchars
;
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. */
312 fix_start_end_in_overlays (from
, to
);
313 fix_overlays_before (current_buffer
, from
, to
);
317 /* Adjust point for an insertion of NBYTES bytes, which are NCHARS characters.
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
328 adjust_point (ptrdiff_t nchars
, ptrdiff_t nbytes
)
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
);
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
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
)
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
;
350 for (m
= BUF_MARKERS (current_buffer
); m
; m
= m
->next
)
352 if (m
->bytepos
>= prev_to_byte
)
354 m
->charpos
+= diff_chars
;
355 m
->bytepos
+= diff_bytes
;
357 else if (m
->bytepos
> from_byte
)
360 m
->bytepos
= from_byte
;
369 buffer_overflow (void)
371 error ("Maximum buffer size exceeded");
374 /* Make the gap NBYTES_ADDED bytes longer. */
377 make_gap_larger (ptrdiff_t nbytes_added
)
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
;
385 if (BUF_BYTES_MAX
- current_size
< nbytes_added
)
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
);
393 enlarge_buffer_text (current_buffer
, nbytes_added
);
395 /* Prevent quitting in move_gap. */
400 real_gap_loc_byte
= GPT_BYTE
;
401 old_gap_size
= GAP_SIZE
;
403 /* Call the newly allocated space a gap at the end of the whole space. */
405 GPT_BYTE
= Z_BYTE
+ GAP_SIZE
;
406 GAP_SIZE
= nbytes_added
;
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);
411 /* Now combine the two into one large gap. */
412 GAP_SIZE
+= old_gap_size
;
414 GPT_BYTE
= real_gap_loc_byte
;
422 #if defined USE_MMAP_FOR_BUFFERS || defined REL_ALLOC || defined DOUG_LEA_MALLOC
424 /* Make the gap NBYTES_REMOVED bytes shorter. */
427 make_gap_smaller (ptrdiff_t nbytes_removed
)
430 ptrdiff_t real_gap_loc
;
431 ptrdiff_t real_gap_loc_byte
;
433 ptrdiff_t real_Z_byte
;
434 ptrdiff_t real_beg_unchanged
;
435 ptrdiff_t new_gap_size
;
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
;
441 /* Prevent quitting in move_gap. */
446 real_gap_loc_byte
= GPT_BYTE
;
447 new_gap_size
= GAP_SIZE
- nbytes_removed
;
449 real_Z_byte
= Z_BYTE
;
450 real_beg_unchanged
= BEG_UNCHANGED
;
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
455 memset (GPT_ADDR
, 0, new_gap_size
);
457 GPT_BYTE
+= new_gap_size
;
459 Z_BYTE
+= new_gap_size
;
460 GAP_SIZE
= nbytes_removed
;
462 /* Move the unwanted pretend gap to the end of the buffer. */
463 gap_right (Z
, Z_BYTE
);
465 enlarge_buffer_text (current_buffer
, -nbytes_removed
);
467 /* Now restore the desired gap. */
468 GAP_SIZE
= new_gap_size
;
470 GPT_BYTE
= real_gap_loc_byte
;
472 Z_BYTE
= real_Z_byte
;
473 BEG_UNCHANGED
= real_beg_unchanged
;
481 #endif /* USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC */
484 make_gap (ptrdiff_t nbytes_added
)
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
490 make_gap_smaller (-nbytes_added
);
494 /* Add NBYTES to B's gap. It's enough to temporarily
495 fake current_buffer and avoid real switch to B. */
498 make_gap_1 (struct buffer
*b
, ptrdiff_t nbytes
)
500 struct buffer
*oldb
= current_buffer
;
504 current_buffer
= oldb
;
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.
512 Return the number of bytes stored at TO_ADDR. */
515 copy_text (const unsigned char *from_addr
, unsigned char *to_addr
,
516 ptrdiff_t nbytes
, bool from_multibyte
, bool to_multibyte
)
518 if (from_multibyte
== to_multibyte
)
520 memcpy (to_addr
, from_addr
, nbytes
);
523 else if (from_multibyte
)
525 ptrdiff_t nchars
= 0;
526 ptrdiff_t bytes_left
= nbytes
;
528 while (bytes_left
> 0)
531 c
= STRING_CHAR_AND_LENGTH (from_addr
, thislen
);
532 if (! ASCII_CHAR_P (c
))
535 from_addr
+= thislen
;
536 bytes_left
-= thislen
;
543 unsigned char *initial_to_addr
= to_addr
;
545 /* Convert single-byte to multibyte. */
548 int c
= *from_addr
++;
550 if (!ASCII_CHAR_P (c
))
552 c
= BYTE8_TO_CHAR (c
);
553 to_addr
+= CHAR_STRING (c
, to_addr
);
557 /* Special case for speed. */
558 *to_addr
++ = c
, nbytes
--;
560 return to_addr
- initial_to_addr
;
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.
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. */
573 insert (const char *string
, ptrdiff_t nbytes
)
577 ptrdiff_t len
= chars_in_text ((unsigned char *) string
, nbytes
), opoint
;
578 insert_1_both (string
, len
, nbytes
, 0, 1, 0);
580 signal_after_change (opoint
, 0, len
);
581 update_compositions (opoint
, PT
, CHECK_BORDER
);
585 /* Likewise, but inherit text properties from neighboring characters. */
588 insert_and_inherit (const char *string
, ptrdiff_t nbytes
)
592 ptrdiff_t len
= chars_in_text ((unsigned char *) string
, nbytes
), opoint
;
593 insert_1_both (string
, len
, nbytes
, 1, 1, 0);
595 signal_after_change (opoint
, 0, len
);
596 update_compositions (opoint
, PT
, CHECK_BORDER
);
600 /* Insert the character C before point. Do not inherit text properties. */
605 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
608 if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
609 len
= CHAR_STRING (c
, str
);
616 insert ((char *) str
, len
);
619 /* Insert the null-terminated string S before point. */
622 insert_string (const char *s
)
624 insert (s
, strlen (s
));
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. */
633 insert_before_markers (const char *string
, ptrdiff_t nbytes
)
637 ptrdiff_t len
= chars_in_text ((unsigned char *) string
, nbytes
), opoint
;
638 insert_1_both (string
, len
, nbytes
, 0, 1, 1);
640 signal_after_change (opoint
, 0, len
);
641 update_compositions (opoint
, PT
, CHECK_BORDER
);
645 /* Likewise, but inherit text properties from neighboring characters. */
648 insert_before_markers_and_inherit (const char *string
,
653 ptrdiff_t len
= chars_in_text ((unsigned char *) string
, nbytes
), opoint
;
654 insert_1_both (string
, len
, nbytes
, 1, 1, 1);
656 signal_after_change (opoint
, 0, len
);
657 update_compositions (opoint
, PT
, CHECK_BORDER
);
661 #ifdef BYTE_COMBINING_DEBUG
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. */
669 count_combining_before (const unsigned char *string
, ptrdiff_t length
,
670 ptrdiff_t pos
, ptrdiff_t pos_byte
)
672 int len
, combining_bytes
;
673 const unsigned char *p
;
675 if (NILP (current_buffer
->enable_multibyte_characters
))
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) */
684 if (pos_byte
== BEG_BYTE
) /* case (2) */
687 p
= BYTE_POS_ADDR (pos_byte
- 1);
688 while (! CHAR_HEAD_P (*p
)) p
--, len
++;
689 if (! LEADING_CODE_P (*p
)) /* case (3) */
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). */
699 /* We have a combination situation. Count the bytes at STRING that
702 while (!CHAR_HEAD_P (*p
) && p
< string
+ length
)
705 return (combining_bytes
< p
- string
? combining_bytes
: p
- string
);
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. */
714 count_combining_after (const unsigned char *string
,
715 ptrdiff_t length
, ptrdiff_t pos
, ptrdiff_t pos_byte
)
717 ptrdiff_t opos_byte
= pos_byte
;
722 if (NILP (current_buffer
->enable_multibyte_characters
))
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
730 if (length
> 0 && ASCII_BYTE_P (string
[length
- 1])) /* case (1) */
732 if (pos_byte
== Z_BYTE
) /* case (2) */
734 bufp
= BYTE_POS_ADDR (pos_byte
);
735 if (CHAR_HEAD_P (*bufp
)) /* case (3) */
739 while (i
>= 0 && ! CHAR_HEAD_P (string
[i
]))
745 /* All characters in STRING are not character head. We must
746 check also preceding bytes at POS. We are sure that the gap
748 unsigned char *p
= BEG_ADDR
;
750 while (i
>= 0 && ! CHAR_HEAD_P (p
[i
]))
752 if (i
< 0 || !LEADING_CODE_P (p
[i
]))
755 bytes
= BYTES_BY_CHAR_HEAD (p
[i
]);
756 return (bytes
<= pos_byte
- 1 - i
+ length
758 : bytes
- (pos_byte
- 1 - i
+ length
));
760 if (!LEADING_CODE_P (string
[i
]))
763 bytes
= BYTES_BY_CHAR_HEAD (string
[i
]) - (length
- i
);
765 while (!CHAR_HEAD_P (*bufp
)) bufp
++, pos_byte
++;
767 return (bytes
<= pos_byte
- opos_byte
? bytes
: pos_byte
- opos_byte
);
773 /* Insert a sequence of NCHARS chars which occupy NBYTES bytes
774 starting at STRING. INHERIT non-zero means inherit the text
775 properties from neighboring characters; zero means inserted text
776 will have no text properties. PREPARE non-zero means call
777 prepare_to_modify_buffer, which checks that the region is not
778 read-only, and calls before-change-function and any modification
779 properties the text may have. BEFORE_MARKERS non-zero means adjust
780 all markers that point at the insertion place to point after it. */
783 insert_1_both (const char *string
,
784 ptrdiff_t nchars
, ptrdiff_t nbytes
,
785 bool inherit
, bool prepare
, bool before_markers
)
790 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
794 /* Do this before moving and increasing the gap,
795 because the before-change hooks might move the gap
796 or make it smaller. */
797 prepare_to_modify_buffer (PT
, PT
, NULL
);
800 move_gap_both (PT
, PT_BYTE
);
801 if (GAP_SIZE
< nbytes
)
802 make_gap (nbytes
- GAP_SIZE
);
804 #ifdef BYTE_COMBINING_DEBUG
805 if (count_combining_before (string
, nbytes
, PT
, PT_BYTE
)
806 || count_combining_after (string
, nbytes
, PT
, PT_BYTE
))
810 /* Record deletion of the surrounding text that combines with
811 the insertion. This, together with recording the insertion,
812 will add up to the right stuff in the undo list. */
813 record_insert (PT
, nchars
);
815 CHARS_MODIFF
= MODIFF
;
817 memcpy (GPT_ADDR
, string
, nbytes
);
826 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
828 eassert (GPT
<= GPT_BYTE
);
830 /* The insert may have been in the unchanged region, so check again. */
831 if (Z
- GPT
< END_UNCHANGED
)
832 END_UNCHANGED
= Z
- GPT
;
834 adjust_overlays_for_insert (PT
, nchars
);
835 adjust_markers_for_insert (PT
, PT_BYTE
,
836 PT
+ nchars
, PT_BYTE
+ nbytes
,
839 offset_intervals (current_buffer
, PT
, nchars
);
841 if (!inherit
&& buffer_intervals (current_buffer
))
842 set_text_properties (make_number (PT
), make_number (PT
+ nchars
),
845 adjust_point (nchars
, nbytes
);
850 /* Insert the part of the text of STRING, a Lisp object assumed to be
851 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
852 starting at position POS / POS_BYTE. If the text of STRING has properties,
853 copy them into the buffer.
855 It does not work to use `insert' for this, because a GC could happen
856 before we copy the stuff into the buffer, and relocate the string
857 without insert noticing. */
860 insert_from_string (Lisp_Object string
, ptrdiff_t pos
, ptrdiff_t pos_byte
,
861 ptrdiff_t length
, ptrdiff_t length_byte
, bool inherit
)
863 ptrdiff_t opoint
= PT
;
865 if (SCHARS (string
) == 0)
868 insert_from_string_1 (string
, pos
, pos_byte
, length
, length_byte
,
870 signal_after_change (opoint
, 0, PT
- opoint
);
871 update_compositions (opoint
, PT
, CHECK_BORDER
);
874 /* Like `insert_from_string' except that all markers pointing
875 at the place where the insertion happens are adjusted to point after it. */
878 insert_from_string_before_markers (Lisp_Object string
,
879 ptrdiff_t pos
, ptrdiff_t pos_byte
,
880 ptrdiff_t length
, ptrdiff_t length_byte
,
883 ptrdiff_t opoint
= PT
;
885 if (SCHARS (string
) == 0)
888 insert_from_string_1 (string
, pos
, pos_byte
, length
, length_byte
,
890 signal_after_change (opoint
, 0, PT
- opoint
);
891 update_compositions (opoint
, PT
, CHECK_BORDER
);
894 /* Subroutine of the insertion functions above. */
897 insert_from_string_1 (Lisp_Object string
, ptrdiff_t pos
, ptrdiff_t pos_byte
,
898 ptrdiff_t nchars
, ptrdiff_t nbytes
,
899 bool inherit
, bool before_markers
)
902 ptrdiff_t outgoing_nbytes
= nbytes
;
905 /* Make OUTGOING_NBYTES describe the text
906 as it will be inserted in this buffer. */
908 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
909 outgoing_nbytes
= nchars
;
910 else if (! STRING_MULTIBYTE (string
))
912 = count_size_as_multibyte (SDATA (string
) + pos_byte
,
916 /* Do this before moving and increasing the gap,
917 because the before-change hooks might move the gap
918 or make it smaller. */
919 prepare_to_modify_buffer (PT
, PT
, NULL
);
922 move_gap_both (PT
, PT_BYTE
);
923 if (GAP_SIZE
< outgoing_nbytes
)
924 make_gap (outgoing_nbytes
- GAP_SIZE
);
927 /* Copy the string text into the buffer, perhaps converting
928 between single-byte and multibyte. */
929 copy_text (SDATA (string
) + pos_byte
, GPT_ADDR
, nbytes
,
930 STRING_MULTIBYTE (string
),
931 ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
933 #ifdef BYTE_COMBINING_DEBUG
934 /* We have copied text into the gap, but we have not altered
935 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
936 to these functions and get the same results as we would
937 have got earlier on. Meanwhile, PT_ADDR does point to
938 the text that has been stored by copy_text. */
939 if (count_combining_before (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
)
940 || count_combining_after (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
))
944 record_insert (PT
, nchars
);
946 CHARS_MODIFF
= MODIFF
;
948 GAP_SIZE
-= outgoing_nbytes
;
952 GPT_BYTE
+= outgoing_nbytes
;
953 ZV_BYTE
+= outgoing_nbytes
;
954 Z_BYTE
+= outgoing_nbytes
;
955 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
957 eassert (GPT
<= GPT_BYTE
);
959 /* The insert may have been in the unchanged region, so check again. */
960 if (Z
- GPT
< END_UNCHANGED
)
961 END_UNCHANGED
= Z
- GPT
;
963 adjust_overlays_for_insert (PT
, nchars
);
964 adjust_markers_for_insert (PT
, PT_BYTE
, PT
+ nchars
,
965 PT_BYTE
+ outgoing_nbytes
,
968 offset_intervals (current_buffer
, PT
, nchars
);
970 intervals
= string_intervals (string
);
971 /* Get the intervals for the part of the string we are inserting. */
972 if (nbytes
< SBYTES (string
))
973 intervals
= copy_intervals (intervals
, pos
, nchars
);
975 /* Insert those intervals. */
976 graft_intervals_into_buffer (intervals
, PT
, nchars
,
977 current_buffer
, inherit
);
979 adjust_point (nchars
, outgoing_nbytes
);
984 /* Insert a sequence of NCHARS chars which occupy NBYTES bytes
985 starting at GAP_END_ADDR - NBYTES (if text_at_gap_tail) and at
986 GPT_ADDR (if not text_at_gap_tail). */
989 insert_from_gap (ptrdiff_t nchars
, ptrdiff_t nbytes
, bool text_at_gap_tail
)
991 int ins_charpos
= GPT
;
992 int ins_bytepos
= GPT_BYTE
;
994 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
997 record_insert (GPT
, nchars
);
1001 if (! text_at_gap_tail
)
1010 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1012 eassert (GPT
<= GPT_BYTE
);
1014 adjust_overlays_for_insert (ins_charpos
, nchars
);
1015 adjust_markers_for_insert (ins_charpos
, ins_bytepos
,
1016 ins_charpos
+ nchars
, ins_bytepos
+ nbytes
, 0);
1018 if (buffer_intervals (current_buffer
))
1020 offset_intervals (current_buffer
, ins_charpos
, nchars
);
1021 graft_intervals_into_buffer (NULL
, ins_charpos
, nchars
,
1025 if (ins_charpos
< PT
)
1026 adjust_point (nchars
, nbytes
);
1031 /* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
1032 current buffer. If the text in BUF has properties, they are absorbed
1033 into the current buffer.
1035 It does not work to use `insert' for this, because a malloc could happen
1036 and relocate BUF's text before the copy happens. */
1039 insert_from_buffer (struct buffer
*buf
,
1040 ptrdiff_t charpos
, ptrdiff_t nchars
, bool inherit
)
1042 ptrdiff_t opoint
= PT
;
1044 insert_from_buffer_1 (buf
, charpos
, nchars
, inherit
);
1045 signal_after_change (opoint
, 0, PT
- opoint
);
1046 update_compositions (opoint
, PT
, CHECK_BORDER
);
1050 insert_from_buffer_1 (struct buffer
*buf
,
1051 ptrdiff_t from
, ptrdiff_t nchars
, bool inherit
)
1053 ptrdiff_t chunk
, chunk_expanded
;
1054 ptrdiff_t from_byte
= buf_charpos_to_bytepos (buf
, from
);
1055 ptrdiff_t to_byte
= buf_charpos_to_bytepos (buf
, from
+ nchars
);
1056 ptrdiff_t incoming_nbytes
= to_byte
- from_byte
;
1057 ptrdiff_t outgoing_nbytes
= incoming_nbytes
;
1060 /* Make OUTGOING_NBYTES describe the text
1061 as it will be inserted in this buffer. */
1063 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
1064 outgoing_nbytes
= nchars
;
1065 else if (NILP (BVAR (buf
, enable_multibyte_characters
)))
1067 ptrdiff_t outgoing_before_gap
= 0;
1068 ptrdiff_t outgoing_after_gap
= 0;
1070 if (from
< BUF_GPT (buf
))
1072 chunk
= BUF_GPT_BYTE (buf
) - from_byte
;
1073 if (chunk
> incoming_nbytes
)
1074 chunk
= incoming_nbytes
;
1076 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf
, from_byte
),
1082 if (chunk
< incoming_nbytes
)
1084 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf
,
1086 incoming_nbytes
- chunk
);
1088 outgoing_nbytes
= outgoing_before_gap
+ outgoing_after_gap
;
1091 /* Do this before moving and increasing the gap,
1092 because the before-change hooks might move the gap
1093 or make it smaller. */
1094 prepare_to_modify_buffer (PT
, PT
, NULL
);
1097 move_gap_both (PT
, PT_BYTE
);
1098 if (GAP_SIZE
< outgoing_nbytes
)
1099 make_gap (outgoing_nbytes
- GAP_SIZE
);
1101 if (from
< BUF_GPT (buf
))
1103 chunk
= BUF_GPT_BYTE (buf
) - from_byte
;
1104 if (chunk
> incoming_nbytes
)
1105 chunk
= incoming_nbytes
;
1106 /* Record number of output bytes, so we know where
1107 to put the output from the second copy_text. */
1109 = copy_text (BUF_BYTE_ADDRESS (buf
, from_byte
),
1111 ! NILP (BVAR (buf
, enable_multibyte_characters
)),
1112 ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
1115 chunk_expanded
= chunk
= 0;
1117 if (chunk
< incoming_nbytes
)
1118 copy_text (BUF_BYTE_ADDRESS (buf
, from_byte
+ chunk
),
1119 GPT_ADDR
+ chunk_expanded
, incoming_nbytes
- chunk
,
1120 ! NILP (BVAR (buf
, enable_multibyte_characters
)),
1121 ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
1123 #ifdef BYTE_COMBINING_DEBUG
1124 /* We have copied text into the gap, but we have not altered
1125 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1126 to these functions and get the same results as we would
1127 have got earlier on. Meanwhile, GPT_ADDR does point to
1128 the text that has been stored by copy_text. */
1129 if (count_combining_before (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
)
1130 || count_combining_after (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
))
1134 record_insert (PT
, nchars
);
1136 CHARS_MODIFF
= MODIFF
;
1138 GAP_SIZE
-= outgoing_nbytes
;
1142 GPT_BYTE
+= outgoing_nbytes
;
1143 ZV_BYTE
+= outgoing_nbytes
;
1144 Z_BYTE
+= outgoing_nbytes
;
1145 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1147 eassert (GPT
<= GPT_BYTE
);
1149 /* The insert may have been in the unchanged region, so check again. */
1150 if (Z
- GPT
< END_UNCHANGED
)
1151 END_UNCHANGED
= Z
- GPT
;
1153 adjust_overlays_for_insert (PT
, nchars
);
1154 adjust_markers_for_insert (PT
, PT_BYTE
, PT
+ nchars
,
1155 PT_BYTE
+ outgoing_nbytes
,
1158 offset_intervals (current_buffer
, PT
, nchars
);
1160 /* Get the intervals for the part of the string we are inserting. */
1161 intervals
= buffer_intervals (buf
);
1162 if (nchars
< BUF_Z (buf
) - BUF_BEG (buf
))
1164 if (buf
== current_buffer
&& PT
<= from
)
1166 intervals
= copy_intervals (intervals
, from
, nchars
);
1169 /* Insert those intervals. */
1170 graft_intervals_into_buffer (intervals
, PT
, nchars
, current_buffer
, inherit
);
1172 adjust_point (nchars
, outgoing_nbytes
);
1175 /* Record undo information and adjust markers and position keepers for
1176 a replacement of a text PREV_TEXT at FROM to a new text of LEN
1177 chars (LEN_BYTE bytes) which resides in the gap just after
1180 PREV_TEXT nil means the new text was just inserted. */
1183 adjust_after_replace (ptrdiff_t from
, ptrdiff_t from_byte
,
1184 Lisp_Object prev_text
, ptrdiff_t len
, ptrdiff_t len_byte
)
1186 ptrdiff_t nchars_del
= 0, nbytes_del
= 0;
1188 #ifdef BYTE_COMBINING_DEBUG
1189 if (count_combining_before (GPT_ADDR
, len_byte
, from
, from_byte
)
1190 || count_combining_after (GPT_ADDR
, len_byte
, from
, from_byte
))
1194 if (STRINGP (prev_text
))
1196 nchars_del
= SCHARS (prev_text
);
1197 nbytes_del
= SBYTES (prev_text
);
1200 /* Update various buffer positions for the new text. */
1201 GAP_SIZE
-= len_byte
;
1203 ZV_BYTE
+= len_byte
; Z_BYTE
+= len_byte
;
1204 GPT
+= len
; GPT_BYTE
+= len_byte
;
1205 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1208 adjust_markers_for_replace (from
, from_byte
, nchars_del
, nbytes_del
,
1211 adjust_markers_for_insert (from
, from_byte
,
1212 from
+ len
, from_byte
+ len_byte
, 0);
1215 record_delete (from
, prev_text
);
1216 record_insert (from
, len
);
1218 if (len
> nchars_del
)
1219 adjust_overlays_for_insert (from
, len
- nchars_del
);
1220 else if (len
< nchars_del
)
1221 adjust_overlays_for_delete (from
, nchars_del
- len
);
1223 offset_intervals (current_buffer
, from
, len
- nchars_del
);
1226 adjust_point (len
- nchars_del
, len_byte
- nbytes_del
);
1228 /* As byte combining will decrease Z, we must check this again. */
1229 if (Z
- GPT
< END_UNCHANGED
)
1230 END_UNCHANGED
= Z
- GPT
;
1235 evaporate_overlays (from
);
1237 CHARS_MODIFF
= MODIFF
;
1240 /* Record undo information, adjust markers and position keepers for an
1241 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1242 text already exists in the current buffer but character length (TO
1243 - FROM) may be incorrect, the correct length is NEWLEN. */
1246 adjust_after_insert (ptrdiff_t from
, ptrdiff_t from_byte
,
1247 ptrdiff_t to
, ptrdiff_t to_byte
, ptrdiff_t newlen
)
1249 ptrdiff_t len
= to
- from
, len_byte
= to_byte
- from_byte
;
1252 move_gap_both (to
, to_byte
);
1253 GAP_SIZE
+= len_byte
;
1254 GPT
-= len
; GPT_BYTE
-= len_byte
;
1255 ZV
-= len
; ZV_BYTE
-= len_byte
;
1256 Z
-= len
; Z_BYTE
-= len_byte
;
1257 adjust_after_replace (from
, from_byte
, Qnil
, newlen
, len_byte
);
1260 /* Replace the text from character positions FROM to TO with NEW,
1261 If PREPARE, call prepare_to_modify_buffer.
1262 If INHERIT, the newly inserted text should inherit text properties
1263 from the surrounding non-deleted text. */
1265 /* Note that this does not yet handle markers quite right.
1266 Also it needs to record a single undo-entry that does a replacement
1267 rather than a separate delete and insert.
1268 That way, undo will also handle markers properly.
1270 But if MARKERS is 0, don't relocate markers. */
1273 replace_range (ptrdiff_t from
, ptrdiff_t to
, Lisp_Object
new,
1274 bool prepare
, bool inherit
, bool markers
)
1276 ptrdiff_t inschars
= SCHARS (new);
1277 ptrdiff_t insbytes
= SBYTES (new);
1278 ptrdiff_t from_byte
, to_byte
;
1279 ptrdiff_t nbytes_del
, nchars_del
;
1280 struct gcpro gcpro1
;
1282 ptrdiff_t outgoing_insbytes
= insbytes
;
1283 Lisp_Object deletion
;
1292 ptrdiff_t range_length
= to
- from
;
1293 prepare_to_modify_buffer (from
, to
, &from
);
1294 to
= from
+ range_length
;
1299 /* Make args be valid. */
1305 from_byte
= CHAR_TO_BYTE (from
);
1306 to_byte
= CHAR_TO_BYTE (to
);
1308 nchars_del
= to
- from
;
1309 nbytes_del
= to_byte
- from_byte
;
1311 if (nbytes_del
<= 0 && insbytes
== 0)
1314 /* Make OUTGOING_INSBYTES describe the text
1315 as it will be inserted in this buffer. */
1317 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
1318 outgoing_insbytes
= inschars
;
1319 else if (! STRING_MULTIBYTE (new))
1321 = count_size_as_multibyte (SDATA (new), insbytes
);
1325 /* Make sure the gap is somewhere in or next to what we are deleting. */
1327 gap_right (from
, from_byte
);
1329 gap_left (to
, to_byte
, 0);
1331 /* Even if we don't record for undo, we must keep the original text
1332 because we may have to recover it because of inappropriate byte
1334 if (! EQ (BVAR (current_buffer
, undo_list
), Qt
))
1335 deletion
= make_buffer_string_both (from
, from_byte
, to
, to_byte
, 1);
1337 GAP_SIZE
+= nbytes_del
;
1340 ZV_BYTE
-= nbytes_del
;
1341 Z_BYTE
-= nbytes_del
;
1343 GPT_BYTE
= from_byte
;
1344 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1346 eassert (GPT
<= GPT_BYTE
);
1348 if (GPT
- BEG
< BEG_UNCHANGED
)
1349 BEG_UNCHANGED
= GPT
- BEG
;
1350 if (Z
- GPT
< END_UNCHANGED
)
1351 END_UNCHANGED
= Z
- GPT
;
1353 if (GAP_SIZE
< outgoing_insbytes
)
1354 make_gap (outgoing_insbytes
- GAP_SIZE
);
1356 /* Copy the string text into the buffer, perhaps converting
1357 between single-byte and multibyte. */
1358 copy_text (SDATA (new), GPT_ADDR
, insbytes
,
1359 STRING_MULTIBYTE (new),
1360 ! NILP (BVAR (current_buffer
, enable_multibyte_characters
)));
1362 #ifdef BYTE_COMBINING_DEBUG
1363 /* We have copied text into the gap, but we have not marked
1364 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1365 here, for both the previous text and the following text.
1366 Meanwhile, GPT_ADDR does point to
1367 the text that has been stored by copy_text. */
1368 if (count_combining_before (GPT_ADDR
, outgoing_insbytes
, from
, from_byte
)
1369 || count_combining_after (GPT_ADDR
, outgoing_insbytes
, from
, from_byte
))
1373 /* Record the insertion first, so that when we undo,
1374 the deletion will be undone first. Thus, undo
1375 will insert before deleting, and thus will keep
1376 the markers before and after this text separate. */
1377 if (!NILP (deletion
))
1379 record_insert (from
+ SCHARS (deletion
), inschars
);
1380 record_delete (from
, deletion
);
1383 GAP_SIZE
-= outgoing_insbytes
;
1387 GPT_BYTE
+= outgoing_insbytes
;
1388 ZV_BYTE
+= outgoing_insbytes
;
1389 Z_BYTE
+= outgoing_insbytes
;
1390 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1392 eassert (GPT
<= GPT_BYTE
);
1394 /* Adjust markers for the deletion and the insertion. */
1396 adjust_markers_for_replace (from
, from_byte
, nchars_del
, nbytes_del
,
1397 inschars
, outgoing_insbytes
);
1399 /* Adjust the overlay center as needed. This must be done after
1400 adjusting the markers that bound the overlays. */
1401 adjust_overlays_for_delete (from
, nchars_del
);
1402 adjust_overlays_for_insert (from
, inschars
);
1404 offset_intervals (current_buffer
, from
, inschars
- nchars_del
);
1406 /* Get the intervals for the part of the string we are inserting--
1407 not including the combined-before bytes. */
1408 intervals
= string_intervals (new);
1409 /* Insert those intervals. */
1410 graft_intervals_into_buffer (intervals
, from
, inschars
,
1411 current_buffer
, inherit
);
1413 /* Relocate point as if it were a marker. */
1415 adjust_point ((from
+ inschars
- (PT
< to
? PT
: to
)),
1416 (from_byte
+ outgoing_insbytes
1417 - (PT_BYTE
< to_byte
? PT_BYTE
: to_byte
)));
1419 if (outgoing_insbytes
== 0)
1420 evaporate_overlays (from
);
1425 CHARS_MODIFF
= MODIFF
;
1428 signal_after_change (from
, nchars_del
, GPT
- from
);
1429 update_compositions (from
, GPT
, CHECK_BORDER
);
1432 /* Replace the text from character positions FROM to TO with
1433 the text in INS of length INSCHARS.
1434 Keep the text properties that applied to the old characters
1435 (extending them to all the new chars if there are more new chars).
1437 Note that this does not yet handle markers quite right.
1439 If MARKERS, relocate markers.
1441 Unlike most functions at this level, never call
1442 prepare_to_modify_buffer and never call signal_after_change. */
1445 replace_range_2 (ptrdiff_t from
, ptrdiff_t from_byte
,
1446 ptrdiff_t to
, ptrdiff_t to_byte
,
1447 const char *ins
, ptrdiff_t inschars
, ptrdiff_t insbytes
,
1450 ptrdiff_t nbytes_del
, nchars_del
;
1454 nchars_del
= to
- from
;
1455 nbytes_del
= to_byte
- from_byte
;
1457 if (nbytes_del
<= 0 && insbytes
== 0)
1460 /* Make sure the gap is somewhere in or next to what we are deleting. */
1462 gap_right (from
, from_byte
);
1464 gap_left (to
, to_byte
, 0);
1466 GAP_SIZE
+= nbytes_del
;
1469 ZV_BYTE
-= nbytes_del
;
1470 Z_BYTE
-= nbytes_del
;
1472 GPT_BYTE
= from_byte
;
1473 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1475 eassert (GPT
<= GPT_BYTE
);
1477 if (GPT
- BEG
< BEG_UNCHANGED
)
1478 BEG_UNCHANGED
= GPT
- BEG
;
1479 if (Z
- GPT
< END_UNCHANGED
)
1480 END_UNCHANGED
= Z
- GPT
;
1482 if (GAP_SIZE
< insbytes
)
1483 make_gap (insbytes
- GAP_SIZE
);
1485 /* Copy the replacement text into the buffer. */
1486 memcpy (GPT_ADDR
, ins
, insbytes
);
1488 #ifdef BYTE_COMBINING_DEBUG
1489 /* We have copied text into the gap, but we have not marked
1490 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1491 here, for both the previous text and the following text.
1492 Meanwhile, GPT_ADDR does point to
1493 the text that has been stored by copy_text. */
1494 if (count_combining_before (GPT_ADDR
, insbytes
, from
, from_byte
)
1495 || count_combining_after (GPT_ADDR
, insbytes
, from
, from_byte
))
1499 GAP_SIZE
-= insbytes
;
1503 GPT_BYTE
+= insbytes
;
1504 ZV_BYTE
+= insbytes
;
1506 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1508 eassert (GPT
<= GPT_BYTE
);
1510 /* Adjust markers for the deletion and the insertion. */
1512 && ! (nchars_del
== 1 && inschars
== 1 && nbytes_del
== insbytes
))
1513 adjust_markers_for_replace (from
, from_byte
, nchars_del
, nbytes_del
,
1514 inschars
, insbytes
);
1516 /* Adjust the overlay center as needed. This must be done after
1517 adjusting the markers that bound the overlays. */
1518 if (nchars_del
!= inschars
)
1520 adjust_overlays_for_insert (from
, inschars
);
1521 adjust_overlays_for_delete (from
+ inschars
, nchars_del
);
1524 offset_intervals (current_buffer
, from
, inschars
- nchars_del
);
1526 /* Relocate point as if it were a marker. */
1527 if (from
< PT
&& (nchars_del
!= inschars
|| nbytes_del
!= insbytes
))
1530 /* PT was within the deleted text. Move it to FROM. */
1531 adjust_point (from
- PT
, from_byte
- PT_BYTE
);
1533 adjust_point (inschars
- nchars_del
, insbytes
- nbytes_del
);
1537 evaporate_overlays (from
);
1542 CHARS_MODIFF
= MODIFF
;
1545 /* Delete characters in current buffer
1546 from FROM up to (but not including) TO.
1547 If TO comes before FROM, we delete nothing. */
1550 del_range (ptrdiff_t from
, ptrdiff_t to
)
1552 del_range_1 (from
, to
, 1, 0);
1555 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1556 RET_STRING says to return the deleted text. */
1559 del_range_1 (ptrdiff_t from
, ptrdiff_t to
, bool prepare
, bool ret_string
)
1561 ptrdiff_t from_byte
, to_byte
;
1562 Lisp_Object deletion
;
1563 struct gcpro gcpro1
;
1565 /* Make args be valid */
1576 ptrdiff_t range_length
= to
- from
;
1577 prepare_to_modify_buffer (from
, to
, &from
);
1578 to
= min (ZV
, from
+ range_length
);
1581 from_byte
= CHAR_TO_BYTE (from
);
1582 to_byte
= CHAR_TO_BYTE (to
);
1584 deletion
= del_range_2 (from
, from_byte
, to
, to_byte
, ret_string
);
1586 signal_after_change (from
, to
- from
, 0);
1587 update_compositions (from
, from
, CHECK_HEAD
);
1592 /* Like del_range_1 but args are byte positions, not char positions. */
1595 del_range_byte (ptrdiff_t from_byte
, ptrdiff_t to_byte
, bool prepare
)
1599 /* Make args be valid */
1600 if (from_byte
< BEGV_BYTE
)
1601 from_byte
= BEGV_BYTE
;
1602 if (to_byte
> ZV_BYTE
)
1605 if (to_byte
<= from_byte
)
1608 from
= BYTE_TO_CHAR (from_byte
);
1609 to
= BYTE_TO_CHAR (to_byte
);
1613 ptrdiff_t old_from
= from
, old_to
= Z
- to
;
1614 ptrdiff_t range_length
= to
- from
;
1615 prepare_to_modify_buffer (from
, to
, &from
);
1616 to
= from
+ range_length
;
1618 if (old_from
!= from
)
1619 from_byte
= CHAR_TO_BYTE (from
);
1625 else if (old_to
== Z
- to
)
1626 to_byte
= CHAR_TO_BYTE (to
);
1629 del_range_2 (from
, from_byte
, to
, to_byte
, 0);
1630 signal_after_change (from
, to
- from
, 0);
1631 update_compositions (from
, from
, CHECK_HEAD
);
1634 /* Like del_range_1, but positions are specified both as charpos
1638 del_range_both (ptrdiff_t from
, ptrdiff_t from_byte
,
1639 ptrdiff_t to
, ptrdiff_t to_byte
, bool prepare
)
1641 /* Make args be valid */
1642 if (from_byte
< BEGV_BYTE
)
1643 from_byte
= BEGV_BYTE
;
1644 if (to_byte
> ZV_BYTE
)
1647 if (to_byte
<= from_byte
)
1657 ptrdiff_t old_from
= from
, old_to
= Z
- to
;
1658 ptrdiff_t range_length
= to
- from
;
1659 prepare_to_modify_buffer (from
, to
, &from
);
1660 to
= from
+ range_length
;
1662 if (old_from
!= from
)
1663 from_byte
= CHAR_TO_BYTE (from
);
1669 else if (old_to
== Z
- to
)
1670 to_byte
= CHAR_TO_BYTE (to
);
1673 del_range_2 (from
, from_byte
, to
, to_byte
, 0);
1674 signal_after_change (from
, to
- from
, 0);
1675 update_compositions (from
, from
, CHECK_HEAD
);
1678 /* Delete a range of text, specified both as character positions
1679 and byte positions. FROM and TO are character positions,
1680 while FROM_BYTE and TO_BYTE are byte positions.
1681 If RET_STRING, the deleted area is returned as a string. */
1684 del_range_2 (ptrdiff_t from
, ptrdiff_t from_byte
,
1685 ptrdiff_t to
, ptrdiff_t to_byte
, bool ret_string
)
1687 ptrdiff_t nbytes_del
, nchars_del
;
1688 Lisp_Object deletion
;
1692 nchars_del
= to
- from
;
1693 nbytes_del
= to_byte
- from_byte
;
1695 /* Make sure the gap is somewhere in or next to what we are deleting. */
1697 gap_right (from
, from_byte
);
1699 gap_left (to
, to_byte
, 0);
1701 #ifdef BYTE_COMBINING_DEBUG
1702 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer
, to_byte
),
1703 Z_BYTE
- to_byte
, from
, from_byte
))
1707 if (ret_string
|| ! EQ (BVAR (current_buffer
, undo_list
), Qt
))
1708 deletion
= make_buffer_string_both (from
, from_byte
, to
, to_byte
, 1);
1712 /* Relocate all markers pointing into the new, larger gap
1713 to point at the end of the text before the gap.
1714 Do this before recording the deletion,
1715 so that undo handles this after reinserting the text. */
1716 adjust_markers_for_delete (from
, from_byte
, to
, to_byte
);
1718 record_delete (from
, deletion
);
1720 CHARS_MODIFF
= MODIFF
;
1722 /* Relocate point as if it were a marker. */
1724 adjust_point (from
- (PT
< to
? PT
: to
),
1725 from_byte
- (PT_BYTE
< to_byte
? PT_BYTE
: to_byte
));
1727 offset_intervals (current_buffer
, from
, - nchars_del
);
1729 /* Adjust the overlay center as needed. This must be done after
1730 adjusting the markers that bound the overlays. */
1731 adjust_overlays_for_delete (from
, nchars_del
);
1733 GAP_SIZE
+= nbytes_del
;
1734 ZV_BYTE
-= nbytes_del
;
1735 Z_BYTE
-= nbytes_del
;
1739 GPT_BYTE
= from_byte
;
1740 if (GAP_SIZE
> 0 && !current_buffer
->text
->inhibit_shrinking
)
1741 /* Put an anchor, unless called from decode_coding_object which
1742 needs to access the previous gap contents. */
1745 eassert (GPT
<= GPT_BYTE
);
1747 if (GPT
- BEG
< BEG_UNCHANGED
)
1748 BEG_UNCHANGED
= GPT
- BEG
;
1749 if (Z
- GPT
< END_UNCHANGED
)
1750 END_UNCHANGED
= Z
- GPT
;
1754 evaporate_overlays (from
);
1759 /* Call this if you're about to change the text of current buffer
1760 from character positions START to END. This checks the read-only
1761 properties of the region, calls the necessary modification hooks,
1762 and warns the next redisplay that it should pay attention to that
1766 modify_text (ptrdiff_t start
, ptrdiff_t end
)
1768 prepare_to_modify_buffer (start
, end
, NULL
);
1770 BUF_COMPUTE_UNCHANGED (current_buffer
, start
- 1, end
);
1771 if (MODIFF
<= SAVE_MODIFF
)
1772 record_first_change ();
1774 CHARS_MODIFF
= MODIFF
;
1776 bset_point_before_scroll (current_buffer
, Qnil
);
1779 /* Check that it is okay to modify the buffer between START and END,
1780 which are char positions.
1782 Run the before-change-function, if any. If intervals are in use,
1783 verify that the text to be modified is not read-only, and call
1784 any modification properties the text may have.
1786 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1787 by holding its value temporarily in a marker. */
1790 prepare_to_modify_buffer_1 (ptrdiff_t start
, ptrdiff_t end
,
1791 ptrdiff_t *preserve_ptr
)
1793 struct buffer
*base_buffer
;
1795 if (!NILP (BVAR (current_buffer
, read_only
)))
1796 Fbarf_if_buffer_read_only ();
1798 /* If we're modifying the buffer other than shown in a selected window,
1799 let redisplay consider other windows if this buffer is visible. */
1800 if (XBUFFER (XWINDOW (selected_window
)->contents
) != current_buffer
1801 && buffer_window_count (current_buffer
))
1802 ++windows_or_buffers_changed
;
1804 if (buffer_intervals (current_buffer
))
1808 Lisp_Object preserve_marker
;
1809 struct gcpro gcpro1
;
1810 preserve_marker
= Fcopy_marker (make_number (*preserve_ptr
), Qnil
);
1811 GCPRO1 (preserve_marker
);
1812 verify_interval_modification (current_buffer
, start
, end
);
1813 *preserve_ptr
= marker_position (preserve_marker
);
1814 unchain_marker (XMARKER (preserve_marker
));
1818 verify_interval_modification (current_buffer
, start
, end
);
1821 /* For indirect buffers, use the base buffer to check clashes. */
1822 if (current_buffer
->base_buffer
!= 0)
1823 base_buffer
= current_buffer
->base_buffer
;
1825 base_buffer
= current_buffer
;
1827 #ifdef CLASH_DETECTION
1828 if (!NILP (BVAR (base_buffer
, file_truename
))
1829 /* Make binding buffer-file-name to nil effective. */
1830 && !NILP (BVAR (base_buffer
, filename
))
1831 && SAVE_MODIFF
>= MODIFF
)
1832 lock_file (BVAR (base_buffer
, file_truename
));
1834 /* At least warn if this file has changed on disk since it was visited. */
1835 if (!NILP (BVAR (base_buffer
, filename
))
1836 && SAVE_MODIFF
>= MODIFF
1837 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
1838 && !NILP (Ffile_exists_p (BVAR (base_buffer
, filename
))))
1839 call1 (intern ("ask-user-about-supersession-threat"),
1840 BVAR (base_buffer
,filename
));
1841 #endif /* not CLASH_DETECTION */
1843 /* If `select-active-regions' is non-nil, save the region text. */
1844 if (!NILP (BVAR (current_buffer
, mark_active
))
1845 && !inhibit_modification_hooks
1846 && XMARKER (BVAR (current_buffer
, mark
))->buffer
1847 && NILP (Vsaved_region_selection
)
1848 && (EQ (Vselect_active_regions
, Qonly
)
1849 ? EQ (CAR_SAFE (Vtransient_mark_mode
), Qonly
)
1850 : (!NILP (Vselect_active_regions
)
1851 && !NILP (Vtransient_mark_mode
))))
1853 ptrdiff_t b
= marker_position (BVAR (current_buffer
, mark
));
1856 Vsaved_region_selection
= make_buffer_string (b
, e
, 0);
1858 Vsaved_region_selection
= make_buffer_string (e
, b
, 0);
1861 signal_before_change (start
, end
, preserve_ptr
);
1862 Vdeactivate_mark
= Qt
;
1865 /* Like above, but called when we know that the buffer text
1866 will be modified and region caches should be invalidated. */
1869 prepare_to_modify_buffer (ptrdiff_t start
, ptrdiff_t end
,
1870 ptrdiff_t *preserve_ptr
)
1872 prepare_to_modify_buffer_1 (start
, end
, preserve_ptr
);
1874 if (current_buffer
->newline_cache
)
1875 invalidate_region_cache (current_buffer
,
1876 current_buffer
->newline_cache
,
1877 start
- BEG
, Z
- end
);
1878 if (current_buffer
->width_run_cache
)
1879 invalidate_region_cache (current_buffer
,
1880 current_buffer
->width_run_cache
,
1881 start
- BEG
, Z
- end
);
1882 if (current_buffer
->bidi_paragraph_cache
)
1883 invalidate_region_cache (current_buffer
,
1884 current_buffer
->bidi_paragraph_cache
,
1885 start
- BEG
, Z
- end
);
1888 /* These macros work with an argument named `preserve_ptr'
1889 and a local variable named `preserve_marker'. */
1891 #define PRESERVE_VALUE \
1892 if (preserve_ptr && NILP (preserve_marker)) \
1893 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1895 #define RESTORE_VALUE \
1896 if (! NILP (preserve_marker)) \
1898 *preserve_ptr = marker_position (preserve_marker); \
1899 unchain_marker (XMARKER (preserve_marker)); \
1902 #define PRESERVE_START_END \
1903 if (NILP (start_marker)) \
1904 start_marker = Fcopy_marker (start, Qnil); \
1905 if (NILP (end_marker)) \
1906 end_marker = Fcopy_marker (end, Qnil);
1908 #define FETCH_START \
1909 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1912 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1914 /* Set a variable to nil if an error occurred.
1915 Don't change the variable if there was no error.
1916 VAL is a cons-cell (VARIABLE . NO-ERROR-FLAG).
1917 VARIABLE is the variable to maybe set to nil.
1918 NO-ERROR-FLAG is nil if there was an error,
1919 anything else meaning no error (so this function does nothing). */
1922 Lisp_Object
*location
;
1927 reset_var_on_error (void *ptr
)
1929 struct rvoe_arg
*p
= ptr
;
1931 *p
->location
= Qnil
;
1934 /* Signal a change to the buffer immediately before it happens.
1935 START_INT and END_INT are the bounds of the text to be changed.
1937 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1938 by holding its value temporarily in a marker. */
1941 signal_before_change (ptrdiff_t start_int
, ptrdiff_t end_int
,
1942 ptrdiff_t *preserve_ptr
)
1944 Lisp_Object start
, end
;
1945 Lisp_Object start_marker
, end_marker
;
1946 Lisp_Object preserve_marker
;
1947 struct gcpro gcpro1
, gcpro2
, gcpro3
;
1948 ptrdiff_t count
= SPECPDL_INDEX ();
1949 struct rvoe_arg rvoe_arg
;
1951 if (inhibit_modification_hooks
)
1954 start
= make_number (start_int
);
1955 end
= make_number (end_int
);
1956 preserve_marker
= Qnil
;
1957 start_marker
= Qnil
;
1959 GCPRO3 (preserve_marker
, start_marker
, end_marker
);
1961 specbind (Qinhibit_modification_hooks
, Qt
);
1963 /* If buffer is unmodified, run a special hook for that case. The
1964 check for Vfirst_change_hook is just a minor optimization. */
1965 if (SAVE_MODIFF
>= MODIFF
1966 && !NILP (Vfirst_change_hook
))
1970 Frun_hooks (1, &Qfirst_change_hook
);
1973 /* Now run the before-change-functions if any. */
1974 if (!NILP (Vbefore_change_functions
))
1976 Lisp_Object args
[3];
1977 rvoe_arg
.location
= &Vbefore_change_functions
;
1978 rvoe_arg
.errorp
= 1;
1983 /* Mark before-change-functions to be reset to nil in case of error. */
1984 record_unwind_protect_ptr (reset_var_on_error
, &rvoe_arg
);
1986 /* Actually run the hook functions. */
1987 args
[0] = Qbefore_change_functions
;
1988 args
[1] = FETCH_START
;
1989 args
[2] = FETCH_END
;
1990 Frun_hook_with_args (3, args
);
1992 /* There was no error: unarm the reset_on_error. */
1993 rvoe_arg
.errorp
= 0;
1996 if (buffer_has_overlays ())
1999 report_overlay_modification (FETCH_START
, FETCH_END
, 0,
2000 FETCH_START
, FETCH_END
, Qnil
);
2003 if (! NILP (start_marker
))
2004 free_marker (start_marker
);
2005 if (! NILP (end_marker
))
2006 free_marker (end_marker
);
2010 unbind_to (count
, Qnil
);
2013 /* Signal a change immediately after it happens.
2014 CHARPOS is the character position of the start of the changed text.
2015 LENDEL is the number of characters of the text before the change.
2016 (Not the whole buffer; just the part that was changed.)
2017 LENINS is the number of characters in that part of the text
2018 after the change. */
2021 signal_after_change (ptrdiff_t charpos
, ptrdiff_t lendel
, ptrdiff_t lenins
)
2023 ptrdiff_t count
= SPECPDL_INDEX ();
2024 struct rvoe_arg rvoe_arg
;
2026 if (inhibit_modification_hooks
)
2029 /* If we are deferring calls to the after-change functions
2030 and there are no before-change functions,
2031 just record the args that we were going to use. */
2032 if (! NILP (Vcombine_after_change_calls
)
2033 && NILP (Vbefore_change_functions
)
2034 && !buffer_has_overlays ())
2038 if (!NILP (combine_after_change_list
)
2039 && current_buffer
!= XBUFFER (combine_after_change_buffer
))
2040 Fcombine_after_change_execute ();
2042 elt
= list3i (charpos
- BEG
, Z
- (charpos
- lendel
+ lenins
),
2044 combine_after_change_list
2045 = Fcons (elt
, combine_after_change_list
);
2046 combine_after_change_buffer
= Fcurrent_buffer ();
2051 if (!NILP (combine_after_change_list
))
2052 Fcombine_after_change_execute ();
2054 specbind (Qinhibit_modification_hooks
, Qt
);
2056 if (!NILP (Vafter_change_functions
))
2058 Lisp_Object args
[4];
2059 rvoe_arg
.location
= &Vafter_change_functions
;
2060 rvoe_arg
.errorp
= 1;
2062 /* Mark after-change-functions to be reset to nil in case of error. */
2063 record_unwind_protect_ptr (reset_var_on_error
, &rvoe_arg
);
2065 /* Actually run the hook functions. */
2066 args
[0] = Qafter_change_functions
;
2067 XSETFASTINT (args
[1], charpos
);
2068 XSETFASTINT (args
[2], charpos
+ lenins
);
2069 XSETFASTINT (args
[3], lendel
);
2070 Frun_hook_with_args (4, args
);
2072 /* There was no error: unarm the reset_on_error. */
2073 rvoe_arg
.errorp
= 0;
2076 if (buffer_has_overlays ())
2077 report_overlay_modification (make_number (charpos
),
2078 make_number (charpos
+ lenins
),
2080 make_number (charpos
),
2081 make_number (charpos
+ lenins
),
2082 make_number (lendel
));
2084 /* After an insertion, call the text properties
2085 insert-behind-hooks or insert-in-front-hooks. */
2087 report_interval_modification (make_number (charpos
),
2088 make_number (charpos
+ lenins
));
2090 unbind_to (count
, Qnil
);
2094 Fcombine_after_change_execute_1 (Lisp_Object val
)
2096 Vcombine_after_change_calls
= val
;
2099 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute
,
2100 Scombine_after_change_execute
, 0, 0, 0,
2101 doc
: /* This function is for use internally in the function `combine-after-change-calls'. */)
2104 ptrdiff_t count
= SPECPDL_INDEX ();
2105 ptrdiff_t beg
, end
, change
;
2106 ptrdiff_t begpos
, endpos
;
2109 if (NILP (combine_after_change_list
))
2112 /* It is rare for combine_after_change_buffer to be invalid, but
2113 possible. It can happen when combine-after-change-calls is
2114 non-nil, and insertion calls a file handler (e.g. through
2115 lock_file) which scribbles into a temp file -- cyd */
2116 if (!BUFFERP (combine_after_change_buffer
)
2117 || !BUFFER_LIVE_P (XBUFFER (combine_after_change_buffer
)))
2119 combine_after_change_list
= Qnil
;
2123 record_unwind_current_buffer ();
2125 Fset_buffer (combine_after_change_buffer
);
2127 /* # chars unchanged at beginning of buffer. */
2129 /* # chars unchanged at end of buffer. */
2131 /* Total amount of insertion (negative for deletion). */
2134 /* Scan the various individual changes,
2135 accumulating the range info in BEG, END and CHANGE. */
2136 for (tail
= combine_after_change_list
; CONSP (tail
);
2140 ptrdiff_t thisbeg
, thisend
, thischange
;
2142 /* Extract the info from the next element. */
2146 thisbeg
= XINT (XCAR (elt
));
2151 thisend
= XINT (XCAR (elt
));
2156 thischange
= XINT (XCAR (elt
));
2158 /* Merge this range into the accumulated range. */
2159 change
+= thischange
;
2166 /* Get the current start and end positions of the range
2167 that was changed. */
2171 /* We are about to handle these, so discard them. */
2172 combine_after_change_list
= Qnil
;
2174 /* Now run the after-change functions for real.
2175 Turn off the flag that defers them. */
2176 record_unwind_protect (Fcombine_after_change_execute_1
,
2177 Vcombine_after_change_calls
);
2178 signal_after_change (begpos
, endpos
- begpos
- change
, endpos
- begpos
);
2179 update_compositions (begpos
, endpos
, CHECK_ALL
);
2181 return unbind_to (count
, Qnil
);
2185 syms_of_insdel (void)
2187 staticpro (&combine_after_change_list
);
2188 staticpro (&combine_after_change_buffer
);
2189 combine_after_change_list
= Qnil
;
2190 combine_after_change_buffer
= Qnil
;
2192 DEFVAR_LISP ("combine-after-change-calls", Vcombine_after_change_calls
,
2193 doc
: /* Used internally by the function `combine-after-change-calls' macro. */);
2194 Vcombine_after_change_calls
= Qnil
;
2196 DEFVAR_BOOL ("inhibit-modification-hooks", inhibit_modification_hooks
,
2197 doc
: /* Non-nil means don't run any of the hooks that respond to buffer changes.
2198 This affects `before-change-functions' and `after-change-functions',
2199 as well as hooks attached to text properties and overlays. */);
2200 inhibit_modification_hooks
= 0;
2201 DEFSYM (Qinhibit_modification_hooks
, "inhibit-modification-hooks");
2203 defsubr (&Scombine_after_change_execute
);