1 /* Buffer insertion/deletion and gap motion for GNU Emacs.
2 Copyright (C) 1985, 86,93,94,95,97,98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
24 #include "intervals.h"
28 #include "blockinput.h"
29 #include "region-cache.h"
35 #define min(x, y) ((x) < (y) ? (x) : (y))
36 #define max(x, y) ((x) > (y) ? (x) : (y))
38 static void insert_from_string_1
P_ ((Lisp_Object
, int, int, int, int, int, int));
39 static void insert_from_buffer_1 ();
40 static void gap_left
P_ ((int, int, int));
41 static void gap_right
P_ ((int, int));
42 static void adjust_markers_gap_motion
P_ ((int, int, int));
43 static void adjust_markers_for_insert
P_ ((int, int, int, int, int));
44 void adjust_markers_for_delete
P_ ((int, int, int, int));
45 static void adjust_markers_for_replace
P_ ((int, int, int, int, int, int));
46 static void adjust_point
P_ ((int, int));
48 Lisp_Object
Fcombine_after_change_execute ();
50 /* Non-nil means don't call the after-change-functions right away,
51 just record an element in Vcombine_after_change_calls_list. */
52 Lisp_Object Vcombine_after_change_calls
;
54 /* List of elements of the form (BEG-UNCHANGED END-UNCHANGED CHANGE-AMOUNT)
55 describing changes which happened while combine_after_change_calls
56 was nonzero. We use this to decide how to call them
57 once the deferral ends.
60 BEG-UNCHANGED is the number of chars before the changed range.
61 END-UNCHANGED is the number of chars after the changed range,
62 and CHANGE-AMOUNT is the number of characters inserted by the change
63 (negative for a deletion). */
64 Lisp_Object combine_after_change_list
;
66 /* Buffer which combine_after_change_list is about. */
67 Lisp_Object combine_after_change_buffer
;
69 /* Check all markers in the current buffer, looking for something invalid. */
71 static int check_markers_debug_flag
;
73 #define CHECK_MARKERS() \
74 if (check_markers_debug_flag) \
81 register Lisp_Object tail
;
82 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
84 tail
= BUF_MARKERS (current_buffer
);
88 if (XMARKER (tail
)->buffer
->text
!= current_buffer
->text
)
90 if (XMARKER (tail
)->charpos
> Z
)
92 if (XMARKER (tail
)->bytepos
> Z_BYTE
)
94 if (multibyte
&& ! CHAR_HEAD_P (FETCH_BYTE (XMARKER (tail
)->bytepos
)))
97 tail
= XMARKER (tail
)->chain
;
101 /* Move gap to position CHARPOS.
102 Note that this can quit! */
108 move_gap_both (charpos
, charpos_to_bytepos (charpos
));
111 /* Move gap to byte position BYTEPOS, which is also char position CHARPOS.
112 Note that this can quit! */
115 move_gap_both (charpos
, bytepos
)
116 int charpos
, bytepos
;
118 if (bytepos
< GPT_BYTE
)
119 gap_left (charpos
, bytepos
, 0);
120 else if (bytepos
> GPT_BYTE
)
121 gap_right (charpos
, bytepos
);
124 /* Move the gap to a position less than the current GPT.
125 BYTEPOS describes the new position as a byte position,
126 and CHARPOS is the corresponding char position.
127 If NEWGAP is nonzero, then don't update beg_unchanged and end_unchanged. */
130 gap_left (charpos
, bytepos
, newgap
)
131 register int charpos
, bytepos
;
134 register unsigned char *to
, *from
;
139 BUF_COMPUTE_UNCHANGED (current_buffer
, charpos
, GPT
);
146 /* Now copy the characters. To move the gap down,
147 copy characters up. */
151 /* I gets number of characters left to copy. */
152 i
= new_s1
- bytepos
;
155 /* If a quit is requested, stop copying now.
156 Change BYTEPOS to be where we have actually moved the gap to. */
160 charpos
= BYTE_TO_CHAR (bytepos
);
163 /* Move at most 32000 chars before checking again for a quit. */
168 /* bcopy is safe if the two areas of memory do not overlap
169 or on systems where bcopy is always safe for moving upward. */
170 && (BCOPY_UPWARD_SAFE
171 || to
- from
>= 128))
173 /* If overlap is not safe, avoid it by not moving too many
174 characters at once. */
175 if (!BCOPY_UPWARD_SAFE
&& i
> to
- from
)
190 /* Adjust markers, and buffer data structure, to put the gap at BYTEPOS.
191 BYTEPOS is where the loop above stopped, which may be what was specified
192 or may be where a quit was detected. */
193 adjust_markers_gap_motion (bytepos
, GPT_BYTE
, GAP_SIZE
);
196 if (bytepos
< charpos
)
198 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
202 /* Move the gap to a position greater than than the current GPT.
203 BYTEPOS describes the new position as a byte position,
204 and CHARPOS is the corresponding char position. */
207 gap_right (charpos
, bytepos
)
208 register int charpos
, bytepos
;
210 register unsigned char *to
, *from
;
214 BUF_COMPUTE_UNCHANGED (current_buffer
, charpos
, GPT
);
221 /* Now copy the characters. To move the gap up,
222 copy characters down. */
226 /* I gets number of characters left to copy. */
227 i
= bytepos
- new_s1
;
230 /* If a quit is requested, stop copying now.
231 Change BYTEPOS to be where we have actually moved the gap to. */
235 charpos
= BYTE_TO_CHAR (bytepos
);
238 /* Move at most 32000 chars before checking again for a quit. */
243 /* bcopy is safe if the two areas of memory do not overlap
244 or on systems where bcopy is always safe for moving downward. */
245 && (BCOPY_DOWNWARD_SAFE
246 || from
- to
>= 128))
248 /* If overlap is not safe, avoid it by not moving too many
249 characters at once. */
250 if (!BCOPY_DOWNWARD_SAFE
&& i
> from
- to
)
265 adjust_markers_gap_motion (GPT_BYTE
+ GAP_SIZE
, bytepos
+ GAP_SIZE
,
269 if (bytepos
< charpos
)
271 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
275 /* Add AMOUNT to the byte position of every marker in the current buffer
276 whose current byte position is between FROM (exclusive) and TO (inclusive).
278 Also, any markers past the outside of that interval, in the direction
279 of adjustment, are first moved back to the near end of the interval
280 and then adjusted by AMOUNT.
282 When the latter adjustment is done, if AMOUNT is negative,
283 we record the adjustment for undo. (This case happens only for
286 The markers' character positions are not altered,
287 because gap motion does not affect character positions. */
289 int adjust_markers_test
;
292 adjust_markers_gap_motion (from
, to
, amount
)
293 register int from
, to
, amount
;
295 /* Now that a marker has a bytepos, not counting the gap,
296 nothing needs to be done here. */
299 register struct Lisp_Marker
*m
;
302 marker
= BUF_MARKERS (current_buffer
);
304 while (!NILP (marker
))
306 m
= XMARKER (marker
);
310 if (mpos
> to
&& mpos
< to
+ amount
)
312 if (adjust_markers_test
)
319 /* Here's the case where a marker is inside text being deleted.
320 AMOUNT can be negative for gap motion, too,
321 but then this range contains no markers. */
322 if (mpos
> from
+ amount
&& mpos
<= from
)
324 if (adjust_markers_test
)
326 mpos
= from
+ amount
;
329 if (mpos
> from
&& mpos
<= to
)
337 /* Adjust all markers for a deletion
338 whose range in bytes is FROM_BYTE to TO_BYTE.
339 The range in charpos is FROM to TO.
341 This function assumes that the gap is adjacent to
342 or inside of the range being deleted. */
345 adjust_markers_for_delete (from
, from_byte
, to
, to_byte
)
346 register int from
, from_byte
, to
, to_byte
;
349 register struct Lisp_Marker
*m
;
350 register int charpos
;
352 marker
= BUF_MARKERS (current_buffer
);
354 while (!NILP (marker
))
356 m
= XMARKER (marker
);
357 charpos
= m
->charpos
;
362 /* If the marker is after the deletion,
363 relocate by number of chars / bytes deleted. */
366 m
->charpos
-= to
- from
;
367 m
->bytepos
-= to_byte
- from_byte
;
370 /* Here's the case where a marker is inside text being deleted. */
371 else if (charpos
> from
)
373 record_marker_adjustment (marker
, from
- charpos
);
375 m
->bytepos
= from_byte
;
383 /* Adjust markers for an insertion that stretches from FROM / FROM_BYTE
384 to TO / TO_BYTE. We have to relocate the charpos of every marker
385 that points after the insertion (but not their bytepos).
387 When a marker points at the insertion point,
388 we advance it if either its insertion-type is t
389 or BEFORE_MARKERS is true. */
392 adjust_markers_for_insert (from
, from_byte
, to
, to_byte
, before_markers
)
393 register int from
, from_byte
, to
, to_byte
;
398 int nchars
= to
- from
;
399 int nbytes
= to_byte
- from_byte
;
401 marker
= BUF_MARKERS (current_buffer
);
403 while (!NILP (marker
))
405 register struct Lisp_Marker
*m
= XMARKER (marker
);
407 /* In a single-byte buffer, a marker's two positions must be
411 if (m
->charpos
!= m
->bytepos
)
415 if (m
->bytepos
== from_byte
)
417 if (m
->insertion_type
|| before_markers
)
419 m
->bytepos
= to_byte
;
421 if (m
->insertion_type
)
425 else if (m
->bytepos
> from_byte
)
427 m
->bytepos
+= nbytes
;
428 m
->charpos
+= nchars
;
434 /* Adjusting only markers whose insertion-type is t may result in
435 disordered overlays in the slot `overlays_before'. */
437 fix_overlays_before (current_buffer
, from
, to
);
440 /* Adjust point for an insertion of NBYTES bytes, which are NCHARS characters.
442 This is used only when the value of point changes due to an insert
443 or delete; it does not represent a conceptual change in point as a
444 marker. In particular, point is not crossing any interval
445 boundaries, so there's no need to use the usual SET_PT macro. In
446 fact it would be incorrect to do so, because either the old or the
447 new value of point is out of sync with the current set of
451 adjust_point (nchars
, nbytes
)
454 BUF_PT (current_buffer
) += nchars
;
455 BUF_PT_BYTE (current_buffer
) += nbytes
;
457 /* In a single-byte buffer, the two positions must be equal. */
463 /* Adjust markers for a replacement of a text at FROM (FROM_BYTE) of
464 length OLD_CHARS (OLD_BYTES) to a new text of length NEW_CHARS
465 (NEW_BYTES). It is assumed that OLD_CHARS > 0, i.e., this is not
469 adjust_markers_for_replace (from
, from_byte
, old_chars
, old_bytes
,
470 new_chars
, new_bytes
)
471 int from
, from_byte
, old_chars
, old_bytes
, new_chars
, new_bytes
;
473 Lisp_Object marker
= BUF_MARKERS (current_buffer
);
474 int prev_to_byte
= from_byte
+ old_bytes
;
475 int diff_chars
= new_chars
- old_chars
;
476 int diff_bytes
= new_bytes
- old_bytes
;
478 while (!NILP (marker
))
480 register struct Lisp_Marker
*m
= XMARKER (marker
);
482 if (m
->bytepos
>= prev_to_byte
)
484 m
->charpos
+= diff_chars
;
485 m
->bytepos
+= diff_bytes
;
487 else if (m
->bytepos
> from_byte
)
490 m
->bytepos
= from_byte
;
500 /* Make the gap NBYTES_ADDED bytes longer. */
503 make_gap (nbytes_added
)
506 unsigned char *result
;
509 int real_gap_loc_byte
;
512 /* If we have to get more space, get enough to last a while. */
513 nbytes_added
+= 2000;
515 /* Don't allow a buffer size that won't fit in an int
516 even if it will fit in a Lisp integer.
517 That won't work because so many places use `int'. */
519 if (Z_BYTE
- BEG_BYTE
+ GAP_SIZE
+ nbytes_added
520 >= ((unsigned) 1 << (min (BITS_PER_INT
, VALBITS
) - 1)))
521 error ("Buffer exceeds maximum size");
523 enlarge_buffer_text (current_buffer
, nbytes_added
);
525 /* Prevent quitting in move_gap. */
530 real_gap_loc_byte
= GPT_BYTE
;
531 old_gap_size
= GAP_SIZE
;
533 /* Call the newly allocated space a gap at the end of the whole space. */
535 GPT_BYTE
= Z_BYTE
+ GAP_SIZE
;
536 GAP_SIZE
= nbytes_added
;
538 /* Move the new gap down to be consecutive with the end of the old one.
539 This adjusts the markers properly too. */
540 gap_left (real_gap_loc
+ old_gap_size
, real_gap_loc_byte
+ old_gap_size
, 1);
542 /* Now combine the two into one large gap. */
543 GAP_SIZE
+= old_gap_size
;
545 GPT_BYTE
= real_gap_loc_byte
;
553 /* Copy NBYTES bytes of text from FROM_ADDR to TO_ADDR.
554 FROM_MULTIBYTE says whether the incoming text is multibyte.
555 TO_MULTIBYTE says whether to store the text as multibyte.
556 If FROM_MULTIBYTE != TO_MULTIBYTE, we convert.
558 Return the number of bytes stored at TO_ADDR. */
561 copy_text (from_addr
, to_addr
, nbytes
,
562 from_multibyte
, to_multibyte
)
563 unsigned char *from_addr
;
564 unsigned char *to_addr
;
566 int from_multibyte
, to_multibyte
;
568 if (from_multibyte
== to_multibyte
)
570 bcopy (from_addr
, to_addr
, nbytes
);
573 else if (from_multibyte
)
576 int bytes_left
= nbytes
;
577 Lisp_Object tbl
= Qnil
;
579 /* We set the variable tbl to the reverse table of
580 Vnonascii_translation_table in advance. */
581 if (CHAR_TABLE_P (Vnonascii_translation_table
))
583 tbl
= Fchar_table_extra_slot (Vnonascii_translation_table
,
585 if (!CHAR_TABLE_P (tbl
))
589 /* Convert multibyte to single byte. */
590 while (bytes_left
> 0)
593 c
= STRING_CHAR_AND_LENGTH (from_addr
, bytes_left
, thislen
);
594 if (!SINGLE_BYTE_CHAR_P (c
))
595 c
= multibyte_char_to_unibyte (c
, tbl
);
597 from_addr
+= thislen
;
598 bytes_left
-= thislen
;
605 unsigned char *initial_to_addr
= to_addr
;
607 /* Convert single-byte to multibyte. */
610 int c
= *from_addr
++;
614 c
= unibyte_char_to_multibyte (c
);
615 to_addr
+= CHAR_STRING (c
, to_addr
);
619 /* Special case for speed. */
620 *to_addr
++ = c
, nbytes
--;
622 return to_addr
- initial_to_addr
;
626 /* Return the number of bytes it would take
627 to convert some single-byte text to multibyte.
628 The single-byte text consists of NBYTES bytes at PTR. */
631 count_size_as_multibyte (ptr
, nbytes
)
636 int outgoing_nbytes
= 0;
638 for (i
= 0; i
< nbytes
; i
++)
640 unsigned int c
= *ptr
++;
646 c
= unibyte_char_to_multibyte (c
);
647 outgoing_nbytes
+= CHAR_BYTES (c
);
651 return outgoing_nbytes
;
654 /* Insert a string of specified length before point.
655 This function judges multibyteness based on
656 enable_multibyte_characters in the current buffer;
657 it never converts between single-byte and multibyte.
659 DO NOT use this for the contents of a Lisp string or a Lisp buffer!
660 prepare_to_modify_buffer could relocate the text. */
663 insert (string
, nbytes
)
664 register unsigned char *string
;
670 insert_1 (string
, nbytes
, 0, 1, 0);
671 signal_after_change (opoint
, 0, PT
- opoint
);
672 update_compositions (opoint
, PT
, CHECK_BORDER
);
676 /* Likewise, but inherit text properties from neighboring characters. */
679 insert_and_inherit (string
, nbytes
)
680 register unsigned char *string
;
686 insert_1 (string
, nbytes
, 1, 1, 0);
687 signal_after_change (opoint
, 0, PT
- opoint
);
688 update_compositions (opoint
, PT
, CHECK_BORDER
);
692 /* Insert the character C before point. Do not inherit text properties. */
698 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
701 if (! NILP (current_buffer
->enable_multibyte_characters
))
702 len
= CHAR_STRING (c
, str
);
712 /* Insert the null-terminated string S before point. */
718 insert (s
, strlen (s
));
721 /* Like `insert' except that all markers pointing at the place where
722 the insertion happens are adjusted to point after it.
723 Don't use this function to insert part of a Lisp string,
724 since gc could happen and relocate it. */
727 insert_before_markers (string
, nbytes
)
728 unsigned char *string
;
735 insert_1 (string
, nbytes
, 0, 1, 1);
736 signal_after_change (opoint
, 0, PT
- opoint
);
737 update_compositions (opoint
, PT
, CHECK_BORDER
);
741 /* Likewise, but inherit text properties from neighboring characters. */
744 insert_before_markers_and_inherit (string
, nbytes
)
745 unsigned char *string
;
752 insert_1 (string
, nbytes
, 1, 1, 1);
753 signal_after_change (opoint
, 0, PT
- opoint
);
754 update_compositions (opoint
, PT
, CHECK_BORDER
);
758 /* Subroutine used by the insert functions above. */
761 insert_1 (string
, nbytes
, inherit
, prepare
, before_markers
)
762 register unsigned char *string
;
764 int inherit
, prepare
, before_markers
;
766 insert_1_both (string
, chars_in_text (string
, nbytes
), nbytes
,
767 inherit
, prepare
, before_markers
);
771 #ifdef BYTE_COMBINING_DEBUG
773 /* See if the bytes before POS/POS_BYTE combine with bytes
774 at the start of STRING to form a single character.
775 If so, return the number of bytes at the start of STRING
776 which combine in this way. Otherwise, return 0. */
779 count_combining_before (string
, length
, pos
, pos_byte
)
780 unsigned char *string
;
784 int len
, combining_bytes
;
787 if (NILP (current_buffer
->enable_multibyte_characters
))
790 /* At first, we can exclude the following cases:
791 (1) STRING[0] can't be a following byte of multibyte sequence.
792 (2) POS is the start of the current buffer.
793 (3) A character before POS is not a multibyte character. */
794 if (length
== 0 || CHAR_HEAD_P (*string
)) /* case (1) */
796 if (pos_byte
== BEG_BYTE
) /* case (2) */
799 p
= BYTE_POS_ADDR (pos_byte
- 1);
800 while (! CHAR_HEAD_P (*p
)) p
--, len
++;
801 if (! BASE_LEADING_CODE_P (*p
)) /* case (3) */
804 combining_bytes
= BYTES_BY_CHAR_HEAD (*p
) - len
;
805 if (combining_bytes
<= 0)
806 /* The character preceding POS is, complete and no room for
807 combining bytes (combining_bytes == 0), or an independent 8-bit
808 character (combining_bytes < 0). */
811 /* We have a combination situation. Count the bytes at STRING that
814 while (!CHAR_HEAD_P (*p
) && p
< string
+ length
)
817 return (combining_bytes
< p
- string
? combining_bytes
: p
- string
);
820 /* See if the bytes after POS/POS_BYTE combine with bytes
821 at the end of STRING to form a single character.
822 If so, return the number of bytes after POS/POS_BYTE
823 which combine in this way. Otherwise, return 0. */
826 count_combining_after (string
, length
, pos
, pos_byte
)
827 unsigned char *string
;
831 int opos_byte
= pos_byte
;
836 if (NILP (current_buffer
->enable_multibyte_characters
))
839 /* At first, we can exclude the following cases:
840 (1) The last byte of STRING is an ASCII.
841 (2) POS is the last of the current buffer.
842 (3) A character at POS can't be a following byte of multibyte
844 if (length
> 0 && ASCII_BYTE_P (string
[length
- 1])) /* case (1) */
846 if (pos_byte
== Z_BYTE
) /* case (2) */
848 bufp
= BYTE_POS_ADDR (pos_byte
);
849 if (CHAR_HEAD_P (*bufp
)) /* case (3) */
853 while (i
>= 0 && ! CHAR_HEAD_P (string
[i
]))
859 /* All characters in STRING are not character head. We must
860 check also preceding bytes at POS. We are sure that the gap
862 unsigned char *p
= BEG_ADDR
;
864 while (i
>= 0 && ! CHAR_HEAD_P (p
[i
]))
866 if (i
< 0 || !BASE_LEADING_CODE_P (p
[i
]))
869 bytes
= BYTES_BY_CHAR_HEAD (p
[i
]);
870 return (bytes
<= pos_byte
- 1 - i
+ length
872 : bytes
- (pos_byte
- 1 - i
+ length
));
874 if (!BASE_LEADING_CODE_P (string
[i
]))
877 bytes
= BYTES_BY_CHAR_HEAD (string
[i
]) - (length
- i
);
879 while (!CHAR_HEAD_P (*bufp
)) bufp
++, pos_byte
++;
881 return (bytes
<= pos_byte
- opos_byte
? bytes
: pos_byte
- opos_byte
);
887 /* Insert a sequence of NCHARS chars which occupy NBYTES bytes
888 starting at STRING. INHERIT, PREPARE and BEFORE_MARKERS
889 are the same as in insert_1. */
892 insert_1_both (string
, nchars
, nbytes
, inherit
, prepare
, before_markers
)
893 register unsigned char *string
;
894 register int nchars
, nbytes
;
895 int inherit
, prepare
, before_markers
;
897 if (NILP (current_buffer
->enable_multibyte_characters
))
901 /* Do this before moving and increasing the gap,
902 because the before-change hooks might move the gap
903 or make it smaller. */
904 prepare_to_modify_buffer (PT
, PT
, NULL
);
907 move_gap_both (PT
, PT_BYTE
);
908 if (GAP_SIZE
< nbytes
)
909 make_gap (nbytes
- GAP_SIZE
);
911 #ifdef BYTE_COMBINING_DEBUG
912 if (count_combining_before (string
, nbytes
, PT
, PT_BYTE
)
913 || count_combining_after (string
, nbytes
, PT
, PT_BYTE
))
917 /* Record deletion of the surrounding text that combines with
918 the insertion. This, together with recording the insertion,
919 will add up to the right stuff in the undo list. */
920 record_insert (PT
, nchars
);
923 bcopy (string
, GPT_ADDR
, nbytes
);
932 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
937 adjust_overlays_for_insert (PT
, nchars
);
938 adjust_markers_for_insert (PT
, PT_BYTE
,
939 PT
+ nchars
, PT_BYTE
+ nbytes
,
942 if (BUF_INTERVALS (current_buffer
) != 0)
943 offset_intervals (current_buffer
, PT
, nchars
);
945 if (!inherit
&& BUF_INTERVALS (current_buffer
) != 0)
946 set_text_properties (make_number (PT
), make_number (PT
+ nchars
),
949 adjust_point (nchars
, nbytes
);
954 /* Insert the part of the text of STRING, a Lisp object assumed to be
955 of type string, consisting of the LENGTH characters (LENGTH_BYTE bytes)
956 starting at position POS / POS_BYTE. If the text of STRING has properties,
957 copy them into the buffer.
959 It does not work to use `insert' for this, because a GC could happen
960 before we bcopy the stuff into the buffer, and relocate the string
961 without insert noticing. */
964 insert_from_string (string
, pos
, pos_byte
, length
, length_byte
, inherit
)
966 register int pos
, pos_byte
, length
, length_byte
;
970 insert_from_string_1 (string
, pos
, pos_byte
, length
, length_byte
,
972 signal_after_change (opoint
, 0, PT
- opoint
);
973 update_compositions (opoint
, PT
, CHECK_BORDER
);
976 /* Like `insert_from_string' except that all markers pointing
977 at the place where the insertion happens are adjusted to point after it. */
980 insert_from_string_before_markers (string
, pos
, pos_byte
,
981 length
, length_byte
, inherit
)
983 register int pos
, pos_byte
, length
, length_byte
;
987 insert_from_string_1 (string
, pos
, pos_byte
, length
, length_byte
,
989 signal_after_change (opoint
, 0, PT
- opoint
);
990 update_compositions (opoint
, PT
, CHECK_BORDER
);
993 /* Subroutine of the insertion functions above. */
996 insert_from_string_1 (string
, pos
, pos_byte
, nchars
, nbytes
,
997 inherit
, before_markers
)
999 register int pos
, pos_byte
, nchars
, nbytes
;
1000 int inherit
, before_markers
;
1002 struct gcpro gcpro1
;
1003 int outgoing_nbytes
= nbytes
;
1006 /* Make OUTGOING_NBYTES describe the text
1007 as it will be inserted in this buffer. */
1009 if (NILP (current_buffer
->enable_multibyte_characters
))
1010 outgoing_nbytes
= nchars
;
1011 else if (! STRING_MULTIBYTE (string
))
1013 = count_size_as_multibyte (&XSTRING (string
)->data
[pos_byte
],
1017 /* Do this before moving and increasing the gap,
1018 because the before-change hooks might move the gap
1019 or make it smaller. */
1020 prepare_to_modify_buffer (PT
, PT
, NULL
);
1023 move_gap_both (PT
, PT_BYTE
);
1024 if (GAP_SIZE
< outgoing_nbytes
)
1025 make_gap (outgoing_nbytes
- GAP_SIZE
);
1028 /* Copy the string text into the buffer, perhaps converting
1029 between single-byte and multibyte. */
1030 copy_text (XSTRING (string
)->data
+ pos_byte
, GPT_ADDR
, nbytes
,
1031 STRING_MULTIBYTE (string
),
1032 ! NILP (current_buffer
->enable_multibyte_characters
));
1034 #ifdef BYTE_COMBINING_DEBUG
1035 /* We have copied text into the gap, but we have not altered
1036 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1037 to these functions and get the same results as we would
1038 have got earlier on. Meanwhile, PT_ADDR does point to
1039 the text that has been stored by copy_text. */
1040 if (count_combining_before (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
)
1041 || count_combining_after (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
))
1045 record_insert (PT
, nchars
);
1048 GAP_SIZE
-= outgoing_nbytes
;
1052 GPT_BYTE
+= outgoing_nbytes
;
1053 ZV_BYTE
+= outgoing_nbytes
;
1054 Z_BYTE
+= outgoing_nbytes
;
1055 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1060 adjust_overlays_for_insert (PT
, nchars
);
1061 adjust_markers_for_insert (PT
, PT_BYTE
, PT
+ nchars
,
1062 PT_BYTE
+ outgoing_nbytes
,
1065 offset_intervals (current_buffer
, PT
, nchars
);
1067 intervals
= XSTRING (string
)->intervals
;
1068 /* Get the intervals for the part of the string we are inserting. */
1069 if (nbytes
< STRING_BYTES (XSTRING (string
)))
1070 intervals
= copy_intervals (intervals
, pos
, nchars
);
1072 /* Insert those intervals. */
1073 graft_intervals_into_buffer (intervals
, PT
, nchars
,
1074 current_buffer
, inherit
);
1076 adjust_point (nchars
, outgoing_nbytes
);
1079 /* Insert text from BUF, NCHARS characters starting at CHARPOS, into the
1080 current buffer. If the text in BUF has properties, they are absorbed
1081 into the current buffer.
1083 It does not work to use `insert' for this, because a malloc could happen
1084 and relocate BUF's text before the bcopy happens. */
1087 insert_from_buffer (buf
, charpos
, nchars
, inherit
)
1089 int charpos
, nchars
;
1094 insert_from_buffer_1 (buf
, charpos
, nchars
, inherit
);
1095 signal_after_change (opoint
, 0, PT
- opoint
);
1096 update_compositions (opoint
, PT
, CHECK_BORDER
);
1100 insert_from_buffer_1 (buf
, from
, nchars
, inherit
)
1105 register Lisp_Object temp
;
1106 int chunk
, chunk_expanded
;
1107 int from_byte
= buf_charpos_to_bytepos (buf
, from
);
1108 int to_byte
= buf_charpos_to_bytepos (buf
, from
+ nchars
);
1109 int incoming_nbytes
= to_byte
- from_byte
;
1110 int outgoing_nbytes
= incoming_nbytes
;
1113 /* Make OUTGOING_NBYTES describe the text
1114 as it will be inserted in this buffer. */
1116 if (NILP (current_buffer
->enable_multibyte_characters
))
1117 outgoing_nbytes
= nchars
;
1118 else if (NILP (buf
->enable_multibyte_characters
))
1120 int outgoing_before_gap
= 0;
1121 int outgoing_after_gap
= 0;
1123 if (from
< BUF_GPT (buf
))
1125 chunk
= BUF_GPT_BYTE (buf
) - from_byte
;
1126 if (chunk
> incoming_nbytes
)
1127 chunk
= incoming_nbytes
;
1129 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf
, from_byte
),
1135 if (chunk
< incoming_nbytes
)
1137 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf
,
1139 incoming_nbytes
- chunk
);
1141 outgoing_nbytes
= outgoing_before_gap
+ outgoing_after_gap
;
1144 /* Make sure point-max won't overflow after this insertion. */
1145 XSETINT (temp
, outgoing_nbytes
+ Z
);
1146 if (outgoing_nbytes
+ Z
!= XINT (temp
))
1147 error ("Maximum buffer size exceeded");
1149 /* Do this before moving and increasing the gap,
1150 because the before-change hooks might move the gap
1151 or make it smaller. */
1152 prepare_to_modify_buffer (PT
, PT
, NULL
);
1155 move_gap_both (PT
, PT_BYTE
);
1156 if (GAP_SIZE
< outgoing_nbytes
)
1157 make_gap (outgoing_nbytes
- GAP_SIZE
);
1159 if (from
< BUF_GPT (buf
))
1161 chunk
= BUF_GPT_BYTE (buf
) - from_byte
;
1162 if (chunk
> incoming_nbytes
)
1163 chunk
= incoming_nbytes
;
1164 /* Record number of output bytes, so we know where
1165 to put the output from the second copy_text. */
1167 = copy_text (BUF_BYTE_ADDRESS (buf
, from_byte
),
1169 ! NILP (buf
->enable_multibyte_characters
),
1170 ! NILP (current_buffer
->enable_multibyte_characters
));
1173 chunk_expanded
= chunk
= 0;
1175 if (chunk
< incoming_nbytes
)
1176 copy_text (BUF_BYTE_ADDRESS (buf
, from_byte
+ chunk
),
1177 GPT_ADDR
+ chunk_expanded
, incoming_nbytes
- chunk
,
1178 ! NILP (buf
->enable_multibyte_characters
),
1179 ! NILP (current_buffer
->enable_multibyte_characters
));
1181 #ifdef BYTE_COMBINING_DEBUG
1182 /* We have copied text into the gap, but we have not altered
1183 PT or PT_BYTE yet. So we can pass PT and PT_BYTE
1184 to these functions and get the same results as we would
1185 have got earlier on. Meanwhile, GPT_ADDR does point to
1186 the text that has been stored by copy_text. */
1187 if (count_combining_before (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
)
1188 || count_combining_after (GPT_ADDR
, outgoing_nbytes
, PT
, PT_BYTE
))
1192 record_insert (PT
, nchars
);
1195 GAP_SIZE
-= outgoing_nbytes
;
1199 GPT_BYTE
+= outgoing_nbytes
;
1200 ZV_BYTE
+= outgoing_nbytes
;
1201 Z_BYTE
+= outgoing_nbytes
;
1202 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1207 adjust_overlays_for_insert (PT
, nchars
);
1208 adjust_markers_for_insert (PT
, PT_BYTE
, PT
+ nchars
,
1209 PT_BYTE
+ outgoing_nbytes
,
1212 if (BUF_INTERVALS (current_buffer
) != 0)
1213 offset_intervals (current_buffer
, PT
, nchars
);
1215 /* Get the intervals for the part of the string we are inserting. */
1216 intervals
= BUF_INTERVALS (buf
);
1217 if (outgoing_nbytes
< BUF_Z_BYTE (buf
) - BUF_BEG_BYTE (buf
))
1219 if (buf
== current_buffer
&& PT
<= from
)
1221 intervals
= copy_intervals (intervals
, from
, nchars
);
1224 /* Insert those intervals. */
1225 graft_intervals_into_buffer (intervals
, PT
, nchars
, current_buffer
, inherit
);
1227 adjust_point (nchars
, outgoing_nbytes
);
1230 /* Record undo information and adjust markers and position keepers for
1231 a replacement of a text PREV_TEXT at FROM to a new text of LEN
1232 chars (LEN_BYTE bytes) which resides in the gap just after
1235 PREV_TEXT nil means the new text was just inserted. */
1238 adjust_after_replace (from
, from_byte
, prev_text
, len
, len_byte
)
1239 int from
, from_byte
, len
, len_byte
;
1240 Lisp_Object prev_text
;
1242 int nchars_del
= 0, nbytes_del
= 0;
1244 #ifdef BYTE_COMBINING_DEBUG
1245 if (count_combining_before (GPT_ADDR
, len_byte
, from
, from_byte
)
1246 || count_combining_after (GPT_ADDR
, len_byte
, from
, from_byte
))
1250 if (STRINGP (prev_text
))
1252 nchars_del
= XSTRING (prev_text
)->size
;
1253 nbytes_del
= STRING_BYTES (XSTRING (prev_text
));
1256 /* Update various buffer positions for the new text. */
1257 GAP_SIZE
-= len_byte
;
1259 ZV_BYTE
+= len_byte
; Z_BYTE
+= len_byte
;
1260 GPT
+= len
; GPT_BYTE
+= len_byte
;
1261 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1264 adjust_markers_for_replace (from
, from_byte
, nchars_del
, nbytes_del
,
1267 adjust_markers_for_insert (from
, from_byte
,
1268 from
+ len
, from_byte
+ len_byte
, 0);
1270 if (! EQ (current_buffer
->undo_list
, Qt
))
1273 record_delete (from
, prev_text
);
1274 record_insert (from
, len
);
1277 if (len
> nchars_del
)
1278 adjust_overlays_for_insert (from
, len
- nchars_del
);
1279 else if (len
< nchars_del
)
1280 adjust_overlays_for_delete (from
, nchars_del
- len
);
1281 if (BUF_INTERVALS (current_buffer
) != 0)
1283 offset_intervals (current_buffer
, from
, len
- nchars_del
);
1287 adjust_point (len
- nchars_del
, len_byte
- nbytes_del
);
1289 /* As byte combining will decrease Z, we must check this again. */
1290 if (Z
- GPT
< END_UNCHANGED
)
1291 END_UNCHANGED
= Z
- GPT
;
1296 evaporate_overlays (from
);
1300 /* Record undo information, adjust markers and position keepers for an
1301 insertion of a text from FROM (FROM_BYTE) to TO (TO_BYTE). The
1302 text already exists in the current buffer but character length (TO
1303 - FROM) may be incorrect, the correct length is NEWLEN. */
1306 adjust_after_insert (from
, from_byte
, to
, to_byte
, newlen
)
1307 int from
, from_byte
, to
, to_byte
, newlen
;
1309 int len
= to
- from
, len_byte
= to_byte
- from_byte
;
1312 move_gap_both (to
, to_byte
);
1313 GAP_SIZE
+= len_byte
;
1314 GPT
-= len
; GPT_BYTE
-= len_byte
;
1315 ZV
-= len
; ZV_BYTE
-= len_byte
;
1316 Z
-= len
; Z_BYTE
-= len_byte
;
1317 adjust_after_replace (from
, from_byte
, Qnil
, newlen
, len_byte
);
1320 /* Replace the text from character positions FROM to TO with NEW,
1321 If PREPARE is nonzero, call prepare_to_modify_buffer.
1322 If INHERIT, the newly inserted text should inherit text properties
1323 from the surrounding non-deleted text. */
1325 /* Note that this does not yet handle markers quite right.
1326 Also it needs to record a single undo-entry that does a replacement
1327 rather than a separate delete and insert.
1328 That way, undo will also handle markers properly.
1330 But if MARKERS is 0, don't relocate markers. */
1333 replace_range (from
, to
, new, prepare
, inherit
, markers
)
1335 int from
, to
, prepare
, inherit
, markers
;
1337 int inschars
= XSTRING (new)->size
;
1338 int insbytes
= STRING_BYTES (XSTRING (new));
1339 int from_byte
, to_byte
;
1340 int nbytes_del
, nchars_del
;
1341 register Lisp_Object temp
;
1342 struct gcpro gcpro1
;
1344 int outgoing_insbytes
= insbytes
;
1345 Lisp_Object deletion
;
1354 int range_length
= to
- from
;
1355 prepare_to_modify_buffer (from
, to
, &from
);
1356 to
= from
+ range_length
;
1361 /* Make args be valid */
1367 from_byte
= CHAR_TO_BYTE (from
);
1368 to_byte
= CHAR_TO_BYTE (to
);
1370 nchars_del
= to
- from
;
1371 nbytes_del
= to_byte
- from_byte
;
1373 if (nbytes_del
<= 0 && insbytes
== 0)
1376 /* Make OUTGOING_INSBYTES describe the text
1377 as it will be inserted in this buffer. */
1379 if (NILP (current_buffer
->enable_multibyte_characters
))
1380 outgoing_insbytes
= inschars
;
1381 else if (! STRING_MULTIBYTE (new))
1383 = count_size_as_multibyte (XSTRING (new)->data
, insbytes
);
1385 /* Make sure point-max won't overflow after this insertion. */
1386 XSETINT (temp
, Z_BYTE
- nbytes_del
+ insbytes
);
1387 if (Z_BYTE
- nbytes_del
+ insbytes
!= XINT (temp
))
1388 error ("Maximum buffer size exceeded");
1392 /* Make sure the gap is somewhere in or next to what we are deleting. */
1394 gap_right (from
, from_byte
);
1396 gap_left (to
, to_byte
, 0);
1398 /* Even if we don't record for undo, we must keep the original text
1399 because we may have to recover it because of inappropriate byte
1401 if (! EQ (current_buffer
->undo_list
, Qt
))
1402 deletion
= make_buffer_string_both (from
, from_byte
, to
, to_byte
, 1);
1405 /* Relocate all markers pointing into the new, larger gap
1406 to point at the end of the text before the gap.
1407 Do this before recording the deletion,
1408 so that undo handles this after reinserting the text. */
1409 adjust_markers_for_delete (from
, from_byte
, to
, to_byte
);
1411 GAP_SIZE
+= nbytes_del
;
1414 ZV_BYTE
-= nbytes_del
;
1415 Z_BYTE
-= nbytes_del
;
1417 GPT_BYTE
= from_byte
;
1418 *(GPT_ADDR
) = 0; /* Put an anchor. */
1423 if (GPT
- BEG
< BEG_UNCHANGED
)
1424 BEG_UNCHANGED
= GPT
- BEG
;
1425 if (Z
- GPT
< END_UNCHANGED
)
1426 END_UNCHANGED
= Z
- GPT
;
1428 if (GAP_SIZE
< insbytes
)
1429 make_gap (insbytes
- GAP_SIZE
);
1431 /* Copy the string text into the buffer, perhaps converting
1432 between single-byte and multibyte. */
1433 copy_text (XSTRING (new)->data
, GPT_ADDR
, insbytes
,
1434 STRING_MULTIBYTE (new),
1435 ! NILP (current_buffer
->enable_multibyte_characters
));
1437 #ifdef BYTE_COMBINING_DEBUG
1438 /* We have copied text into the gap, but we have not marked
1439 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1440 here, for both the previous text and the following text.
1441 Meanwhile, GPT_ADDR does point to
1442 the text that has been stored by copy_text. */
1443 if (count_combining_before (GPT_ADDR
, outgoing_insbytes
, from
, from_byte
)
1444 || count_combining_after (GPT_ADDR
, outgoing_insbytes
, from
, from_byte
))
1448 if (! EQ (current_buffer
->undo_list
, Qt
))
1450 record_delete (from
, deletion
);
1451 record_insert (from
, inschars
);
1454 GAP_SIZE
-= outgoing_insbytes
;
1458 GPT_BYTE
+= outgoing_insbytes
;
1459 ZV_BYTE
+= outgoing_insbytes
;
1460 Z_BYTE
+= outgoing_insbytes
;
1461 if (GAP_SIZE
> 0) *(GPT_ADDR
) = 0; /* Put an anchor. */
1466 /* Adjust the overlay center as needed. This must be done after
1467 adjusting the markers that bound the overlays. */
1468 adjust_overlays_for_delete (from
, nchars_del
);
1469 adjust_overlays_for_insert (from
, inschars
);
1471 adjust_markers_for_insert (from
, from_byte
,
1472 from
+ inschars
, from_byte
+ outgoing_insbytes
,
1475 offset_intervals (current_buffer
, from
, inschars
- nchars_del
);
1477 /* Get the intervals for the part of the string we are inserting--
1478 not including the combined-before bytes. */
1479 intervals
= XSTRING (new)->intervals
;
1480 /* Insert those intervals. */
1481 graft_intervals_into_buffer (intervals
, from
, inschars
,
1482 current_buffer
, inherit
);
1484 /* Relocate point as if it were a marker. */
1486 adjust_point ((from
+ inschars
- (PT
< to
? PT
: to
)),
1487 (from_byte
+ outgoing_insbytes
1488 - (PT_BYTE
< to_byte
? PT_BYTE
: to_byte
)));
1490 if (outgoing_insbytes
== 0)
1491 evaporate_overlays (from
);
1498 signal_after_change (from
, nchars_del
, GPT
- from
);
1499 update_compositions (from
, GPT
, CHECK_BORDER
);
1502 /* Delete characters in current buffer
1503 from FROM up to (but not including) TO.
1504 If TO comes before FROM, we delete nothing. */
1507 del_range (from
, to
)
1508 register int from
, to
;
1510 del_range_1 (from
, to
, 1, 0);
1513 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1514 RET_STRING says to return the deleted text. */
1517 del_range_1 (from
, to
, prepare
, ret_string
)
1518 int from
, to
, prepare
, ret_string
;
1520 int from_byte
, to_byte
;
1521 Lisp_Object deletion
;
1522 struct gcpro gcpro1
;
1524 /* Make args be valid */
1535 int range_length
= to
- from
;
1536 prepare_to_modify_buffer (from
, to
, &from
);
1537 to
= from
+ range_length
;
1540 from_byte
= CHAR_TO_BYTE (from
);
1541 to_byte
= CHAR_TO_BYTE (to
);
1543 deletion
= del_range_2 (from
, from_byte
, to
, to_byte
, ret_string
);
1545 signal_after_change (from
, to
- from
, 0);
1546 update_compositions (from
, from
, CHECK_HEAD
);
1551 /* Like del_range_1 but args are byte positions, not char positions. */
1554 del_range_byte (from_byte
, to_byte
, prepare
)
1555 int from_byte
, to_byte
, prepare
;
1559 /* Make args be valid */
1560 if (from_byte
< BEGV_BYTE
)
1561 from_byte
= BEGV_BYTE
;
1562 if (to_byte
> ZV_BYTE
)
1565 if (to_byte
<= from_byte
)
1568 from
= BYTE_TO_CHAR (from_byte
);
1569 to
= BYTE_TO_CHAR (to_byte
);
1573 int old_from
= from
, old_to
= Z
- to
;
1574 int range_length
= to
- from
;
1575 prepare_to_modify_buffer (from
, to
, &from
);
1576 to
= from
+ range_length
;
1578 if (old_from
!= from
)
1579 from_byte
= CHAR_TO_BYTE (from
);
1580 if (old_to
== Z
- to
)
1581 to_byte
= CHAR_TO_BYTE (to
);
1584 del_range_2 (from
, from_byte
, to
, to_byte
, 0);
1585 signal_after_change (from
, to
- from
, 0);
1586 update_compositions (from
, from
, CHECK_HEAD
);
1589 /* Like del_range_1, but positions are specified both as charpos
1593 del_range_both (from
, from_byte
, to
, to_byte
, prepare
)
1594 int from
, from_byte
, to
, to_byte
, prepare
;
1596 /* Make args be valid */
1597 if (from_byte
< BEGV_BYTE
)
1598 from_byte
= BEGV_BYTE
;
1599 if (to_byte
> ZV_BYTE
)
1602 if (to_byte
<= from_byte
)
1612 int old_from
= from
, old_to
= Z
- to
;
1613 int range_length
= to
- from
;
1614 prepare_to_modify_buffer (from
, to
, &from
);
1615 to
= from
+ range_length
;
1617 if (old_from
!= from
)
1618 from_byte
= CHAR_TO_BYTE (from
);
1619 if (old_to
== Z
- to
)
1620 to_byte
= CHAR_TO_BYTE (to
);
1623 del_range_2 (from
, from_byte
, to
, to_byte
, 0);
1624 signal_after_change (from
, to
- from
, 0);
1625 update_compositions (from
, from
, CHECK_HEAD
);
1628 /* Delete a range of text, specified both as character positions
1629 and byte positions. FROM and TO are character positions,
1630 while FROM_BYTE and TO_BYTE are byte positions.
1631 If RET_STRING is true, the deleted area is returned as a string. */
1634 del_range_2 (from
, from_byte
, to
, to_byte
, ret_string
)
1635 int from
, from_byte
, to
, to_byte
, ret_string
;
1637 register int nbytes_del
, nchars_del
;
1638 Lisp_Object deletion
;
1642 nchars_del
= to
- from
;
1643 nbytes_del
= to_byte
- from_byte
;
1645 /* Make sure the gap is somewhere in or next to what we are deleting. */
1647 gap_right (from
, from_byte
);
1649 gap_left (to
, to_byte
, 0);
1651 #ifdef BYTE_COMBINING_DEBUG
1652 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer
, to_byte
),
1653 Z_BYTE
- to_byte
, from
, from_byte
))
1657 if (ret_string
|| ! EQ (current_buffer
->undo_list
, Qt
))
1658 deletion
= make_buffer_string_both (from
, from_byte
, to
, to_byte
, 1);
1662 /* Relocate all markers pointing into the new, larger gap
1663 to point at the end of the text before the gap.
1664 Do this before recording the deletion,
1665 so that undo handles this after reinserting the text. */
1666 adjust_markers_for_delete (from
, from_byte
, to
, to_byte
);
1668 if (! EQ (current_buffer
->undo_list
, Qt
))
1669 record_delete (from
, deletion
);
1672 /* Relocate point as if it were a marker. */
1674 adjust_point (from
- (PT
< to
? PT
: to
),
1675 from_byte
- (PT_BYTE
< to_byte
? PT_BYTE
: to_byte
));
1677 offset_intervals (current_buffer
, from
, - nchars_del
);
1679 /* Adjust the overlay center as needed. This must be done after
1680 adjusting the markers that bound the overlays. */
1681 adjust_overlays_for_delete (from
, nchars_del
);
1683 GAP_SIZE
+= nbytes_del
;
1684 ZV_BYTE
-= nbytes_del
;
1685 Z_BYTE
-= nbytes_del
;
1689 GPT_BYTE
= from_byte
;
1690 *(GPT_ADDR
) = 0; /* Put an anchor. */
1695 if (GPT
- BEG
< BEG_UNCHANGED
)
1696 BEG_UNCHANGED
= GPT
- BEG
;
1697 if (Z
- GPT
< END_UNCHANGED
)
1698 END_UNCHANGED
= Z
- GPT
;
1702 evaporate_overlays (from
);
1707 /* Call this if you're about to change the region of BUFFER from
1708 character positions START to END. This checks the read-only
1709 properties of the region, calls the necessary modification hooks,
1710 and warns the next redisplay that it should pay attention to that
1714 modify_region (buffer
, start
, end
)
1715 struct buffer
*buffer
;
1718 struct buffer
*old_buffer
= current_buffer
;
1720 if (buffer
!= old_buffer
)
1721 set_buffer_internal (buffer
);
1723 prepare_to_modify_buffer (start
, end
, NULL
);
1725 BUF_COMPUTE_UNCHANGED (buffer
, start
- 1, end
);
1727 if (MODIFF
<= SAVE_MODIFF
)
1728 record_first_change ();
1731 buffer
->point_before_scroll
= Qnil
;
1733 if (buffer
!= old_buffer
)
1734 set_buffer_internal (old_buffer
);
1737 /* Check that it is okay to modify the buffer between START and END,
1738 which are char positions.
1740 Run the before-change-function, if any. If intervals are in use,
1741 verify that the text to be modified is not read-only, and call
1742 any modification properties the text may have.
1744 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1745 by holding its value temporarily in a marker. */
1748 prepare_to_modify_buffer (start
, end
, preserve_ptr
)
1752 if (!NILP (current_buffer
->read_only
))
1753 Fbarf_if_buffer_read_only ();
1755 /* Let redisplay consider other windows than selected_window
1756 if modifying another buffer. */
1757 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1758 ++windows_or_buffers_changed
;
1760 if (BUF_INTERVALS (current_buffer
) != 0)
1764 Lisp_Object preserve_marker
;
1765 struct gcpro gcpro1
;
1766 preserve_marker
= Fcopy_marker (make_number (*preserve_ptr
), Qnil
);
1767 GCPRO1 (preserve_marker
);
1768 verify_interval_modification (current_buffer
, start
, end
);
1769 *preserve_ptr
= marker_position (preserve_marker
);
1770 unchain_marker (preserve_marker
);
1774 verify_interval_modification (current_buffer
, start
, end
);
1777 #ifdef CLASH_DETECTION
1778 if (!NILP (current_buffer
->file_truename
)
1779 /* Make binding buffer-file-name to nil effective. */
1780 && !NILP (current_buffer
->filename
)
1781 && SAVE_MODIFF
>= MODIFF
)
1782 lock_file (current_buffer
->file_truename
);
1784 /* At least warn if this file has changed on disk since it was visited. */
1785 if (!NILP (current_buffer
->filename
)
1786 && SAVE_MODIFF
>= MODIFF
1787 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
1788 && !NILP (Ffile_exists_p (current_buffer
->filename
)))
1789 call1 (intern ("ask-user-about-supersession-threat"),
1790 current_buffer
->filename
);
1791 #endif /* not CLASH_DETECTION */
1793 signal_before_change (start
, end
, preserve_ptr
);
1795 if (current_buffer
->newline_cache
)
1796 invalidate_region_cache (current_buffer
,
1797 current_buffer
->newline_cache
,
1798 start
- BEG
, Z
- end
);
1799 if (current_buffer
->width_run_cache
)
1800 invalidate_region_cache (current_buffer
,
1801 current_buffer
->width_run_cache
,
1802 start
- BEG
, Z
- end
);
1804 Vdeactivate_mark
= Qt
;
1807 /* These macros work with an argument named `preserve_ptr'
1808 and a local variable named `preserve_marker'. */
1810 #define PRESERVE_VALUE \
1811 if (preserve_ptr && NILP (preserve_marker)) \
1812 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1814 #define RESTORE_VALUE \
1815 if (! NILP (preserve_marker)) \
1817 *preserve_ptr = marker_position (preserve_marker); \
1818 unchain_marker (preserve_marker); \
1821 #define PRESERVE_START_END \
1822 if (NILP (start_marker)) \
1823 start_marker = Fcopy_marker (start, Qnil); \
1824 if (NILP (end_marker)) \
1825 end_marker = Fcopy_marker (end, Qnil);
1827 #define FETCH_START \
1828 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1831 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1833 /* Signal a change to the buffer immediately before it happens.
1834 START_INT and END_INT are the bounds of the text to be changed.
1836 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1837 by holding its value temporarily in a marker. */
1840 signal_before_change (start_int
, end_int
, preserve_ptr
)
1841 int start_int
, end_int
;
1844 Lisp_Object start
, end
;
1845 Lisp_Object start_marker
, end_marker
;
1846 Lisp_Object preserve_marker
;
1847 struct gcpro gcpro1
, gcpro2
, gcpro3
;
1849 if (inhibit_modification_hooks
)
1852 start
= make_number (start_int
);
1853 end
= make_number (end_int
);
1854 preserve_marker
= Qnil
;
1855 start_marker
= Qnil
;
1857 GCPRO3 (preserve_marker
, start_marker
, end_marker
);
1859 /* If buffer is unmodified, run a special hook for that case. */
1860 if (SAVE_MODIFF
>= MODIFF
1861 && !NILP (Vfirst_change_hook
)
1862 && !NILP (Vrun_hooks
))
1866 call1 (Vrun_hooks
, Qfirst_change_hook
);
1869 /* Now run the before-change-functions if any. */
1870 if (!NILP (Vbefore_change_functions
))
1872 Lisp_Object args
[3];
1873 Lisp_Object before_change_functions
;
1874 Lisp_Object after_change_functions
;
1875 struct gcpro gcpro1
, gcpro2
;
1880 /* "Bind" before-change-functions and after-change-functions
1881 to nil--but in a way that errors don't know about.
1882 That way, if there's an error in them, they will stay nil. */
1883 before_change_functions
= Vbefore_change_functions
;
1884 after_change_functions
= Vafter_change_functions
;
1885 Vbefore_change_functions
= Qnil
;
1886 Vafter_change_functions
= Qnil
;
1887 GCPRO2 (before_change_functions
, after_change_functions
);
1889 /* Actually run the hook functions. */
1890 args
[0] = Qbefore_change_functions
;
1891 args
[1] = FETCH_START
;
1892 args
[2] = FETCH_END
;
1893 run_hook_list_with_args (before_change_functions
, 3, args
);
1895 /* "Unbind" the variables we "bound" to nil. */
1896 Vbefore_change_functions
= before_change_functions
;
1897 Vafter_change_functions
= after_change_functions
;
1901 if (!NILP (current_buffer
->overlays_before
)
1902 || !NILP (current_buffer
->overlays_after
))
1905 report_overlay_modification (FETCH_START
, FETCH_END
, 0,
1906 FETCH_START
, FETCH_END
, Qnil
);
1909 if (! NILP (start_marker
))
1910 free_marker (start_marker
);
1911 if (! NILP (end_marker
))
1912 free_marker (end_marker
);
1917 /* Signal a change immediately after it happens.
1918 CHARPOS is the character position of the start of the changed text.
1919 LENDEL is the number of characters of the text before the change.
1920 (Not the whole buffer; just the part that was changed.)
1921 LENINS is the number of characters in that part of the text
1922 after the change. */
1925 signal_after_change (charpos
, lendel
, lenins
)
1926 int charpos
, lendel
, lenins
;
1928 if (inhibit_modification_hooks
)
1931 /* If we are deferring calls to the after-change functions
1932 and there are no before-change functions,
1933 just record the args that we were going to use. */
1934 if (! NILP (Vcombine_after_change_calls
)
1935 && NILP (Vbefore_change_functions
)
1936 && NILP (current_buffer
->overlays_before
)
1937 && NILP (current_buffer
->overlays_after
))
1941 if (!NILP (combine_after_change_list
)
1942 && current_buffer
!= XBUFFER (combine_after_change_buffer
))
1943 Fcombine_after_change_execute ();
1945 elt
= Fcons (make_number (charpos
- BEG
),
1946 Fcons (make_number (Z
- (charpos
- lendel
+ lenins
)),
1947 Fcons (make_number (lenins
- lendel
), Qnil
)));
1948 combine_after_change_list
1949 = Fcons (elt
, combine_after_change_list
);
1950 combine_after_change_buffer
= Fcurrent_buffer ();
1955 if (!NILP (combine_after_change_list
))
1956 Fcombine_after_change_execute ();
1958 if (!NILP (Vafter_change_functions
))
1960 Lisp_Object args
[4];
1961 Lisp_Object before_change_functions
;
1962 Lisp_Object after_change_functions
;
1963 struct gcpro gcpro1
, gcpro2
;
1965 /* "Bind" before-change-functions and after-change-functions
1966 to nil--but in a way that errors don't know about.
1967 That way, if there's an error in them, they will stay nil. */
1968 before_change_functions
= Vbefore_change_functions
;
1969 after_change_functions
= Vafter_change_functions
;
1970 Vbefore_change_functions
= Qnil
;
1971 Vafter_change_functions
= Qnil
;
1972 GCPRO2 (before_change_functions
, after_change_functions
);
1974 /* Actually run the hook functions. */
1975 args
[0] = Qafter_change_functions
;
1976 XSETFASTINT (args
[1], charpos
);
1977 XSETFASTINT (args
[2], charpos
+ lenins
);
1978 XSETFASTINT (args
[3], lendel
);
1979 run_hook_list_with_args (after_change_functions
,
1982 /* "Unbind" the variables we "bound" to nil. */
1983 Vbefore_change_functions
= before_change_functions
;
1984 Vafter_change_functions
= after_change_functions
;
1988 if (!NILP (current_buffer
->overlays_before
)
1989 || !NILP (current_buffer
->overlays_after
))
1990 report_overlay_modification (make_number (charpos
),
1991 make_number (charpos
+ lenins
),
1993 make_number (charpos
),
1994 make_number (charpos
+ lenins
),
1995 make_number (lendel
));
1997 /* After an insertion, call the text properties
1998 insert-behind-hooks or insert-in-front-hooks. */
2000 report_interval_modification (make_number (charpos
),
2001 make_number (charpos
+ lenins
));
2005 Fcombine_after_change_execute_1 (val
)
2008 Vcombine_after_change_calls
= val
;
2012 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute
,
2013 Scombine_after_change_execute
, 0, 0, 0,
2014 "This function is for use internally in `combine-after-change-calls'.")
2017 int count
= specpdl_ptr
- specpdl
;
2018 int beg
, end
, change
;
2022 if (NILP (combine_after_change_list
))
2025 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
2027 Fset_buffer (combine_after_change_buffer
);
2029 /* # chars unchanged at beginning of buffer. */
2031 /* # chars unchanged at end of buffer. */
2033 /* Total amount of insertion (negative for deletion). */
2036 /* Scan the various individual changes,
2037 accumulating the range info in BEG, END and CHANGE. */
2038 for (tail
= combine_after_change_list
; CONSP (tail
);
2042 int thisbeg
, thisend
, thischange
;
2044 /* Extract the info from the next element. */
2048 thisbeg
= XINT (XCAR (elt
));
2053 thisend
= XINT (XCAR (elt
));
2058 thischange
= XINT (XCAR (elt
));
2060 /* Merge this range into the accumulated range. */
2061 change
+= thischange
;
2068 /* Get the current start and end positions of the range
2069 that was changed. */
2073 /* We are about to handle these, so discard them. */
2074 combine_after_change_list
= Qnil
;
2076 /* Now run the after-change functions for real.
2077 Turn off the flag that defers them. */
2078 record_unwind_protect (Fcombine_after_change_execute_1
,
2079 Vcombine_after_change_calls
);
2080 signal_after_change (begpos
, endpos
- begpos
- change
, endpos
- begpos
);
2081 update_compositions (begpos
, endpos
, CHECK_ALL
);
2083 return unbind_to (count
, Qnil
);
2089 staticpro (&combine_after_change_list
);
2090 combine_after_change_list
= Qnil
;
2091 combine_after_change_buffer
= Qnil
;
2093 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag
,
2094 "Non-nil means enable debugging checks for invalid marker positions.");
2095 check_markers_debug_flag
= 0;
2096 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls
,
2097 "Used internally by the `combine-after-change-calls' macro.");
2098 Vcombine_after_change_calls
= Qnil
;
2100 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks
,
2101 "Non-nil means don't run any of the hooks that respond to buffer changes.\n\
2102 This affects `before-change-functions' and `after-change-functions',\n\
2103 as well as hooks attached to text properties and overlays.");
2104 inhibit_modification_hooks
= 0;
2106 defsubr (&Scombine_after_change_execute
);