Avoid some more compiler warnings.
[bpt/emacs.git] / src / insdel.c
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.
3
4 This file is part of GNU Emacs.
5
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)
9 any later version.
10
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.
15
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. */
20
21
22 #include <config.h>
23 #include "lisp.h"
24 #include "intervals.h"
25 #include "buffer.h"
26 #include "charset.h"
27 #include "window.h"
28 #include "blockinput.h"
29 #include "region-cache.h"
30
31 #ifndef NULL
32 #define NULL 0
33 #endif
34
35 #define min(x, y) ((x) < (y) ? (x) : (y))
36 #define max(x, y) ((x) > (y) ? (x) : (y))
37
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));
47
48 Lisp_Object Fcombine_after_change_execute ();
49
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;
53
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.
58
59 In each element.
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;
65
66 /* Buffer which combine_after_change_list is about. */
67 Lisp_Object combine_after_change_buffer;
68 \f
69 /* Check all markers in the current buffer, looking for something invalid. */
70
71 static int check_markers_debug_flag;
72
73 #define CHECK_MARKERS() \
74 if (check_markers_debug_flag) \
75 check_markers (); \
76 else
77
78 void
79 check_markers ()
80 {
81 register Lisp_Object tail;
82 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
83
84 tail = BUF_MARKERS (current_buffer);
85
86 while (! NILP (tail))
87 {
88 if (XMARKER (tail)->buffer->text != current_buffer->text)
89 abort ();
90 if (XMARKER (tail)->charpos > Z)
91 abort ();
92 if (XMARKER (tail)->bytepos > Z_BYTE)
93 abort ();
94 if (multibyte && ! CHAR_HEAD_P (FETCH_BYTE (XMARKER (tail)->bytepos)))
95 abort ();
96
97 tail = XMARKER (tail)->chain;
98 }
99 }
100 \f
101 /* Move gap to position CHARPOS.
102 Note that this can quit! */
103
104 void
105 move_gap (charpos)
106 int charpos;
107 {
108 move_gap_both (charpos, charpos_to_bytepos (charpos));
109 }
110
111 /* Move gap to byte position BYTEPOS, which is also char position CHARPOS.
112 Note that this can quit! */
113
114 void
115 move_gap_both (charpos, bytepos)
116 int charpos, bytepos;
117 {
118 if (bytepos < GPT_BYTE)
119 gap_left (charpos, bytepos, 0);
120 else if (bytepos > GPT_BYTE)
121 gap_right (charpos, bytepos);
122 }
123
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. */
128
129 static void
130 gap_left (charpos, bytepos, newgap)
131 register int charpos, bytepos;
132 int newgap;
133 {
134 register unsigned char *to, *from;
135 register int i;
136 int new_s1;
137
138 if (!newgap)
139 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
140
141 i = GPT_BYTE;
142 to = GAP_END_ADDR;
143 from = GPT_ADDR;
144 new_s1 = GPT_BYTE;
145
146 /* Now copy the characters. To move the gap down,
147 copy characters up. */
148
149 while (1)
150 {
151 /* I gets number of characters left to copy. */
152 i = new_s1 - bytepos;
153 if (i == 0)
154 break;
155 /* If a quit is requested, stop copying now.
156 Change BYTEPOS to be where we have actually moved the gap to. */
157 if (QUITP)
158 {
159 bytepos = new_s1;
160 charpos = BYTE_TO_CHAR (bytepos);
161 break;
162 }
163 /* Move at most 32000 chars before checking again for a quit. */
164 if (i > 32000)
165 i = 32000;
166 #ifdef GAP_USE_BCOPY
167 if (i >= 128
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))
172 {
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)
176 i = to - from;
177 new_s1 -= i;
178 from -= i, to -= i;
179 bcopy (from, to, i);
180 }
181 else
182 #endif
183 {
184 new_s1 -= i;
185 while (--i >= 0)
186 *--to = *--from;
187 }
188 }
189
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);
194 GPT_BYTE = bytepos;
195 GPT = charpos;
196 if (bytepos < charpos)
197 abort ();
198 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
199 QUIT;
200 }
201
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. */
205
206 static void
207 gap_right (charpos, bytepos)
208 register int charpos, bytepos;
209 {
210 register unsigned char *to, *from;
211 register int i;
212 int new_s1;
213
214 BUF_COMPUTE_UNCHANGED (current_buffer, charpos, GPT);
215
216 i = GPT_BYTE;
217 from = GAP_END_ADDR;
218 to = GPT_ADDR;
219 new_s1 = GPT_BYTE;
220
221 /* Now copy the characters. To move the gap up,
222 copy characters down. */
223
224 while (1)
225 {
226 /* I gets number of characters left to copy. */
227 i = bytepos - new_s1;
228 if (i == 0)
229 break;
230 /* If a quit is requested, stop copying now.
231 Change BYTEPOS to be where we have actually moved the gap to. */
232 if (QUITP)
233 {
234 bytepos = new_s1;
235 charpos = BYTE_TO_CHAR (bytepos);
236 break;
237 }
238 /* Move at most 32000 chars before checking again for a quit. */
239 if (i > 32000)
240 i = 32000;
241 #ifdef GAP_USE_BCOPY
242 if (i >= 128
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))
247 {
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)
251 i = from - to;
252 new_s1 += i;
253 bcopy (from, to, i);
254 from += i, to += i;
255 }
256 else
257 #endif
258 {
259 new_s1 += i;
260 while (--i >= 0)
261 *to++ = *from++;
262 }
263 }
264
265 adjust_markers_gap_motion (GPT_BYTE + GAP_SIZE, bytepos + GAP_SIZE,
266 - GAP_SIZE);
267 GPT = charpos;
268 GPT_BYTE = bytepos;
269 if (bytepos < charpos)
270 abort ();
271 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
272 QUIT;
273 }
274 \f
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).
277
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.
281
282 When the latter adjustment is done, if AMOUNT is negative,
283 we record the adjustment for undo. (This case happens only for
284 deletion.)
285
286 The markers' character positions are not altered,
287 because gap motion does not affect character positions. */
288
289 int adjust_markers_test;
290
291 static void
292 adjust_markers_gap_motion (from, to, amount)
293 register int from, to, amount;
294 {
295 /* Now that a marker has a bytepos, not counting the gap,
296 nothing needs to be done here. */
297 #if 0
298 Lisp_Object marker;
299 register struct Lisp_Marker *m;
300 register int mpos;
301
302 marker = BUF_MARKERS (current_buffer);
303
304 while (!NILP (marker))
305 {
306 m = XMARKER (marker);
307 mpos = m->bytepos;
308 if (amount > 0)
309 {
310 if (mpos > to && mpos < to + amount)
311 {
312 if (adjust_markers_test)
313 abort ();
314 mpos = to + amount;
315 }
316 }
317 else
318 {
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)
323 {
324 if (adjust_markers_test)
325 abort ();
326 mpos = from + amount;
327 }
328 }
329 if (mpos > from && mpos <= to)
330 mpos += amount;
331 m->bufpos = mpos;
332 marker = m->chain;
333 }
334 #endif
335 }
336 \f
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.
340
341 This function assumes that the gap is adjacent to
342 or inside of the range being deleted. */
343
344 void
345 adjust_markers_for_delete (from, from_byte, to, to_byte)
346 register int from, from_byte, to, to_byte;
347 {
348 Lisp_Object marker;
349 register struct Lisp_Marker *m;
350 register int charpos;
351
352 marker = BUF_MARKERS (current_buffer);
353
354 while (!NILP (marker))
355 {
356 m = XMARKER (marker);
357 charpos = m->charpos;
358
359 if (charpos > Z)
360 abort ();
361
362 /* If the marker is after the deletion,
363 relocate by number of chars / bytes deleted. */
364 if (charpos > to)
365 {
366 m->charpos -= to - from;
367 m->bytepos -= to_byte - from_byte;
368 }
369
370 /* Here's the case where a marker is inside text being deleted. */
371 else if (charpos > from)
372 {
373 record_marker_adjustment (marker, from - charpos);
374 m->charpos = from;
375 m->bytepos = from_byte;
376 }
377
378 marker = m->chain;
379 }
380 }
381
382 \f
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).
386
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. */
390
391 static void
392 adjust_markers_for_insert (from, from_byte, to, to_byte, before_markers)
393 register int from, from_byte, to, to_byte;
394 int before_markers;
395 {
396 Lisp_Object marker;
397 int adjusted = 0;
398 int nchars = to - from;
399 int nbytes = to_byte - from_byte;
400
401 marker = BUF_MARKERS (current_buffer);
402
403 while (!NILP (marker))
404 {
405 register struct Lisp_Marker *m = XMARKER (marker);
406
407 /* In a single-byte buffer, a marker's two positions must be
408 equal. */
409 if (Z == Z_BYTE)
410 {
411 if (m->charpos != m->bytepos)
412 abort ();
413 }
414
415 if (m->bytepos == from_byte)
416 {
417 if (m->insertion_type || before_markers)
418 {
419 m->bytepos = to_byte;
420 m->charpos = to;
421 if (m->insertion_type)
422 adjusted = 1;
423 }
424 }
425 else if (m->bytepos > from_byte)
426 {
427 m->bytepos += nbytes;
428 m->charpos += nchars;
429 }
430
431 marker = m->chain;
432 }
433
434 /* Adjusting only markers whose insertion-type is t may result in
435 disordered overlays in the slot `overlays_before'. */
436 if (adjusted)
437 fix_overlays_before (current_buffer, from, to);
438 }
439
440 /* Adjust point for an insertion of NBYTES bytes, which are NCHARS characters.
441
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
448 intervals. */
449
450 static void
451 adjust_point (nchars, nbytes)
452 int nchars, nbytes;
453 {
454 BUF_PT (current_buffer) += nchars;
455 BUF_PT_BYTE (current_buffer) += nbytes;
456
457 /* In a single-byte buffer, the two positions must be equal. */
458 if (ZV == ZV_BYTE
459 && PT != PT_BYTE)
460 abort ();
461 }
462 \f
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
466 an insertion. */
467
468 static void
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;
472 {
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;
477
478 while (!NILP (marker))
479 {
480 register struct Lisp_Marker *m = XMARKER (marker);
481
482 if (m->bytepos >= prev_to_byte)
483 {
484 m->charpos += diff_chars;
485 m->bytepos += diff_bytes;
486 }
487 else if (m->bytepos > from_byte)
488 {
489 m->charpos = from;
490 m->bytepos = from_byte;
491 }
492
493 marker = m->chain;
494 }
495
496 CHECK_MARKERS ();
497 }
498
499 \f
500 /* Make the gap NBYTES_ADDED bytes longer. */
501
502 void
503 make_gap (nbytes_added)
504 int nbytes_added;
505 {
506 unsigned char *result;
507 Lisp_Object tem;
508 int real_gap_loc;
509 int real_gap_loc_byte;
510 int old_gap_size;
511
512 /* If we have to get more space, get enough to last a while. */
513 nbytes_added += 2000;
514
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'. */
518
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");
522
523 enlarge_buffer_text (current_buffer, nbytes_added);
524
525 /* Prevent quitting in move_gap. */
526 tem = Vinhibit_quit;
527 Vinhibit_quit = Qt;
528
529 real_gap_loc = GPT;
530 real_gap_loc_byte = GPT_BYTE;
531 old_gap_size = GAP_SIZE;
532
533 /* Call the newly allocated space a gap at the end of the whole space. */
534 GPT = Z + GAP_SIZE;
535 GPT_BYTE = Z_BYTE + GAP_SIZE;
536 GAP_SIZE = nbytes_added;
537
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);
541
542 /* Now combine the two into one large gap. */
543 GAP_SIZE += old_gap_size;
544 GPT = real_gap_loc;
545 GPT_BYTE = real_gap_loc_byte;
546
547 /* Put an anchor. */
548 *(Z_ADDR) = 0;
549
550 Vinhibit_quit = tem;
551 }
552 \f
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.
557
558 Return the number of bytes stored at TO_ADDR. */
559
560 int
561 copy_text (from_addr, to_addr, nbytes,
562 from_multibyte, to_multibyte)
563 unsigned char *from_addr;
564 unsigned char *to_addr;
565 int nbytes;
566 int from_multibyte, to_multibyte;
567 {
568 if (from_multibyte == to_multibyte)
569 {
570 bcopy (from_addr, to_addr, nbytes);
571 return nbytes;
572 }
573 else if (from_multibyte)
574 {
575 int nchars = 0;
576 int bytes_left = nbytes;
577 Lisp_Object tbl = Qnil;
578
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))
582 {
583 tbl = Fchar_table_extra_slot (Vnonascii_translation_table,
584 make_number (0));
585 if (!CHAR_TABLE_P (tbl))
586 tbl = Qnil;
587 }
588
589 /* Convert multibyte to single byte. */
590 while (bytes_left > 0)
591 {
592 int thislen, c;
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);
596 *to_addr++ = c;
597 from_addr += thislen;
598 bytes_left -= thislen;
599 nchars++;
600 }
601 return nchars;
602 }
603 else
604 {
605 unsigned char *initial_to_addr = to_addr;
606
607 /* Convert single-byte to multibyte. */
608 while (nbytes > 0)
609 {
610 int c = *from_addr++;
611
612 if (c >= 0200)
613 {
614 c = unibyte_char_to_multibyte (c);
615 to_addr += CHAR_STRING (c, to_addr);
616 nbytes--;
617 }
618 else
619 /* Special case for speed. */
620 *to_addr++ = c, nbytes--;
621 }
622 return to_addr - initial_to_addr;
623 }
624 }
625
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. */
629
630 int
631 count_size_as_multibyte (ptr, nbytes)
632 unsigned char *ptr;
633 int nbytes;
634 {
635 int i;
636 int outgoing_nbytes = 0;
637
638 for (i = 0; i < nbytes; i++)
639 {
640 unsigned int c = *ptr++;
641
642 if (c < 0200)
643 outgoing_nbytes++;
644 else
645 {
646 c = unibyte_char_to_multibyte (c);
647 outgoing_nbytes += CHAR_BYTES (c);
648 }
649 }
650
651 return outgoing_nbytes;
652 }
653 \f
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.
658
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. */
661
662 void
663 insert (string, nbytes)
664 register unsigned char *string;
665 register int nbytes;
666 {
667 if (nbytes > 0)
668 {
669 int opoint = PT;
670 insert_1 (string, nbytes, 0, 1, 0);
671 signal_after_change (opoint, 0, PT - opoint);
672 update_compositions (opoint, PT, CHECK_BORDER);
673 }
674 }
675
676 /* Likewise, but inherit text properties from neighboring characters. */
677
678 void
679 insert_and_inherit (string, nbytes)
680 register unsigned char *string;
681 register int nbytes;
682 {
683 if (nbytes > 0)
684 {
685 int opoint = PT;
686 insert_1 (string, nbytes, 1, 1, 0);
687 signal_after_change (opoint, 0, PT - opoint);
688 update_compositions (opoint, PT, CHECK_BORDER);
689 }
690 }
691
692 /* Insert the character C before point. Do not inherit text properties. */
693
694 void
695 insert_char (c)
696 int c;
697 {
698 unsigned char str[MAX_MULTIBYTE_LENGTH];
699 int len;
700
701 if (! NILP (current_buffer->enable_multibyte_characters))
702 len = CHAR_STRING (c, str);
703 else
704 {
705 len = 1;
706 str[0] = c;
707 }
708
709 insert (str, len);
710 }
711
712 /* Insert the null-terminated string S before point. */
713
714 void
715 insert_string (s)
716 char *s;
717 {
718 insert (s, strlen (s));
719 }
720
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. */
725
726 void
727 insert_before_markers (string, nbytes)
728 unsigned char *string;
729 register int nbytes;
730 {
731 if (nbytes > 0)
732 {
733 int opoint = PT;
734
735 insert_1 (string, nbytes, 0, 1, 1);
736 signal_after_change (opoint, 0, PT - opoint);
737 update_compositions (opoint, PT, CHECK_BORDER);
738 }
739 }
740
741 /* Likewise, but inherit text properties from neighboring characters. */
742
743 void
744 insert_before_markers_and_inherit (string, nbytes)
745 unsigned char *string;
746 register int nbytes;
747 {
748 if (nbytes > 0)
749 {
750 int opoint = PT;
751
752 insert_1 (string, nbytes, 1, 1, 1);
753 signal_after_change (opoint, 0, PT - opoint);
754 update_compositions (opoint, PT, CHECK_BORDER);
755 }
756 }
757
758 /* Subroutine used by the insert functions above. */
759
760 void
761 insert_1 (string, nbytes, inherit, prepare, before_markers)
762 register unsigned char *string;
763 register int nbytes;
764 int inherit, prepare, before_markers;
765 {
766 insert_1_both (string, chars_in_text (string, nbytes), nbytes,
767 inherit, prepare, before_markers);
768 }
769
770 \f
771 #ifdef BYTE_COMBINING_DEBUG
772
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. */
777
778 int
779 count_combining_before (string, length, pos, pos_byte)
780 unsigned char *string;
781 int length;
782 int pos, pos_byte;
783 {
784 int len, combining_bytes;
785 unsigned char *p;
786
787 if (NILP (current_buffer->enable_multibyte_characters))
788 return 0;
789
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) */
795 return 0;
796 if (pos_byte == BEG_BYTE) /* case (2) */
797 return 0;
798 len = 1;
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) */
802 return 0;
803
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). */
809 return 0;
810
811 /* We have a combination situation. Count the bytes at STRING that
812 may combine. */
813 p = string + 1;
814 while (!CHAR_HEAD_P (*p) && p < string + length)
815 p++;
816
817 return (combining_bytes < p - string ? combining_bytes : p - string);
818 }
819
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. */
824
825 int
826 count_combining_after (string, length, pos, pos_byte)
827 unsigned char *string;
828 int length;
829 int pos, pos_byte;
830 {
831 int opos_byte = pos_byte;
832 int i;
833 int bytes;
834 unsigned char *bufp;
835
836 if (NILP (current_buffer->enable_multibyte_characters))
837 return 0;
838
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
843 character. */
844 if (length > 0 && ASCII_BYTE_P (string[length - 1])) /* case (1) */
845 return 0;
846 if (pos_byte == Z_BYTE) /* case (2) */
847 return 0;
848 bufp = BYTE_POS_ADDR (pos_byte);
849 if (CHAR_HEAD_P (*bufp)) /* case (3) */
850 return 0;
851
852 i = length - 1;
853 while (i >= 0 && ! CHAR_HEAD_P (string[i]))
854 {
855 i--;
856 }
857 if (i < 0)
858 {
859 /* All characters in STRING are not character head. We must
860 check also preceding bytes at POS. We are sure that the gap
861 is at POS. */
862 unsigned char *p = BEG_ADDR;
863 i = pos_byte - 2;
864 while (i >= 0 && ! CHAR_HEAD_P (p[i]))
865 i--;
866 if (i < 0 || !BASE_LEADING_CODE_P (p[i]))
867 return 0;
868
869 bytes = BYTES_BY_CHAR_HEAD (p[i]);
870 return (bytes <= pos_byte - 1 - i + length
871 ? 0
872 : bytes - (pos_byte - 1 - i + length));
873 }
874 if (!BASE_LEADING_CODE_P (string[i]))
875 return 0;
876
877 bytes = BYTES_BY_CHAR_HEAD (string[i]) - (length - i);
878 bufp++, pos_byte++;
879 while (!CHAR_HEAD_P (*bufp)) bufp++, pos_byte++;
880
881 return (bytes <= pos_byte - opos_byte ? bytes : pos_byte - opos_byte);
882 }
883
884 #endif
885
886 \f
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. */
890
891 void
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;
896 {
897 if (NILP (current_buffer->enable_multibyte_characters))
898 nchars = nbytes;
899
900 if (prepare)
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);
905
906 if (PT != GPT)
907 move_gap_both (PT, PT_BYTE);
908 if (GAP_SIZE < nbytes)
909 make_gap (nbytes - GAP_SIZE);
910
911 #ifdef BYTE_COMBINING_DEBUG
912 if (count_combining_before (string, nbytes, PT, PT_BYTE)
913 || count_combining_after (string, nbytes, PT, PT_BYTE))
914 abort ();
915 #endif
916
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);
921 MODIFF++;
922
923 bcopy (string, GPT_ADDR, nbytes);
924
925 GAP_SIZE -= nbytes;
926 GPT += nchars;
927 ZV += nchars;
928 Z += nchars;
929 GPT_BYTE += nbytes;
930 ZV_BYTE += nbytes;
931 Z_BYTE += nbytes;
932 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
933
934 if (GPT_BYTE < GPT)
935 abort ();
936
937 adjust_overlays_for_insert (PT, nchars);
938 adjust_markers_for_insert (PT, PT_BYTE,
939 PT + nchars, PT_BYTE + nbytes,
940 before_markers);
941
942 if (BUF_INTERVALS (current_buffer) != 0)
943 offset_intervals (current_buffer, PT, nchars);
944
945 if (!inherit && BUF_INTERVALS (current_buffer) != 0)
946 set_text_properties (make_number (PT), make_number (PT + nchars),
947 Qnil, Qnil, Qnil);
948
949 adjust_point (nchars, nbytes);
950
951 CHECK_MARKERS ();
952 }
953 \f
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.
958
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. */
962
963 void
964 insert_from_string (string, pos, pos_byte, length, length_byte, inherit)
965 Lisp_Object string;
966 register int pos, pos_byte, length, length_byte;
967 int inherit;
968 {
969 int opoint = PT;
970 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
971 inherit, 0);
972 signal_after_change (opoint, 0, PT - opoint);
973 update_compositions (opoint, PT, CHECK_BORDER);
974 }
975
976 /* Like `insert_from_string' except that all markers pointing
977 at the place where the insertion happens are adjusted to point after it. */
978
979 void
980 insert_from_string_before_markers (string, pos, pos_byte,
981 length, length_byte, inherit)
982 Lisp_Object string;
983 register int pos, pos_byte, length, length_byte;
984 int inherit;
985 {
986 int opoint = PT;
987 insert_from_string_1 (string, pos, pos_byte, length, length_byte,
988 inherit, 1);
989 signal_after_change (opoint, 0, PT - opoint);
990 update_compositions (opoint, PT, CHECK_BORDER);
991 }
992
993 /* Subroutine of the insertion functions above. */
994
995 static void
996 insert_from_string_1 (string, pos, pos_byte, nchars, nbytes,
997 inherit, before_markers)
998 Lisp_Object string;
999 register int pos, pos_byte, nchars, nbytes;
1000 int inherit, before_markers;
1001 {
1002 struct gcpro gcpro1;
1003 int outgoing_nbytes = nbytes;
1004 INTERVAL intervals;
1005
1006 /* Make OUTGOING_NBYTES describe the text
1007 as it will be inserted in this buffer. */
1008
1009 if (NILP (current_buffer->enable_multibyte_characters))
1010 outgoing_nbytes = nchars;
1011 else if (! STRING_MULTIBYTE (string))
1012 outgoing_nbytes
1013 = count_size_as_multibyte (&XSTRING (string)->data[pos_byte],
1014 nbytes);
1015
1016 GCPRO1 (string);
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);
1021
1022 if (PT != GPT)
1023 move_gap_both (PT, PT_BYTE);
1024 if (GAP_SIZE < outgoing_nbytes)
1025 make_gap (outgoing_nbytes - GAP_SIZE);
1026 UNGCPRO;
1027
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));
1033
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))
1042 abort ();
1043 #endif
1044
1045 record_insert (PT, nchars);
1046 MODIFF++;
1047
1048 GAP_SIZE -= outgoing_nbytes;
1049 GPT += nchars;
1050 ZV += nchars;
1051 Z += nchars;
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. */
1056
1057 if (GPT_BYTE < GPT)
1058 abort ();
1059
1060 adjust_overlays_for_insert (PT, nchars);
1061 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1062 PT_BYTE + outgoing_nbytes,
1063 before_markers);
1064
1065 offset_intervals (current_buffer, PT, nchars);
1066
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);
1071
1072 /* Insert those intervals. */
1073 graft_intervals_into_buffer (intervals, PT, nchars,
1074 current_buffer, inherit);
1075
1076 adjust_point (nchars, outgoing_nbytes);
1077 }
1078 \f
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.
1082
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. */
1085
1086 void
1087 insert_from_buffer (buf, charpos, nchars, inherit)
1088 struct buffer *buf;
1089 int charpos, nchars;
1090 int inherit;
1091 {
1092 int opoint = PT;
1093
1094 insert_from_buffer_1 (buf, charpos, nchars, inherit);
1095 signal_after_change (opoint, 0, PT - opoint);
1096 update_compositions (opoint, PT, CHECK_BORDER);
1097 }
1098
1099 static void
1100 insert_from_buffer_1 (buf, from, nchars, inherit)
1101 struct buffer *buf;
1102 int from, nchars;
1103 int inherit;
1104 {
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;
1111 INTERVAL intervals;
1112
1113 /* Make OUTGOING_NBYTES describe the text
1114 as it will be inserted in this buffer. */
1115
1116 if (NILP (current_buffer->enable_multibyte_characters))
1117 outgoing_nbytes = nchars;
1118 else if (NILP (buf->enable_multibyte_characters))
1119 {
1120 int outgoing_before_gap = 0;
1121 int outgoing_after_gap = 0;
1122
1123 if (from < BUF_GPT (buf))
1124 {
1125 chunk = BUF_GPT_BYTE (buf) - from_byte;
1126 if (chunk > incoming_nbytes)
1127 chunk = incoming_nbytes;
1128 outgoing_before_gap
1129 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf, from_byte),
1130 chunk);
1131 }
1132 else
1133 chunk = 0;
1134
1135 if (chunk < incoming_nbytes)
1136 outgoing_after_gap
1137 = count_size_as_multibyte (BUF_BYTE_ADDRESS (buf,
1138 from_byte + chunk),
1139 incoming_nbytes - chunk);
1140
1141 outgoing_nbytes = outgoing_before_gap + outgoing_after_gap;
1142 }
1143
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");
1148
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);
1153
1154 if (PT != GPT)
1155 move_gap_both (PT, PT_BYTE);
1156 if (GAP_SIZE < outgoing_nbytes)
1157 make_gap (outgoing_nbytes - GAP_SIZE);
1158
1159 if (from < BUF_GPT (buf))
1160 {
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. */
1166 chunk_expanded
1167 = copy_text (BUF_BYTE_ADDRESS (buf, from_byte),
1168 GPT_ADDR, chunk,
1169 ! NILP (buf->enable_multibyte_characters),
1170 ! NILP (current_buffer->enable_multibyte_characters));
1171 }
1172 else
1173 chunk_expanded = chunk = 0;
1174
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));
1180
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))
1189 abort ();
1190 #endif
1191
1192 record_insert (PT, nchars);
1193 MODIFF++;
1194
1195 GAP_SIZE -= outgoing_nbytes;
1196 GPT += nchars;
1197 ZV += nchars;
1198 Z += nchars;
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. */
1203
1204 if (GPT_BYTE < GPT)
1205 abort ();
1206
1207 adjust_overlays_for_insert (PT, nchars);
1208 adjust_markers_for_insert (PT, PT_BYTE, PT + nchars,
1209 PT_BYTE + outgoing_nbytes,
1210 0);
1211
1212 if (BUF_INTERVALS (current_buffer) != 0)
1213 offset_intervals (current_buffer, PT, nchars);
1214
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))
1218 {
1219 if (buf == current_buffer && PT <= from)
1220 from += nchars;
1221 intervals = copy_intervals (intervals, from, nchars);
1222 }
1223
1224 /* Insert those intervals. */
1225 graft_intervals_into_buffer (intervals, PT, nchars, current_buffer, inherit);
1226
1227 adjust_point (nchars, outgoing_nbytes);
1228 }
1229 \f
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
1233 GPT_ADDR.
1234
1235 PREV_TEXT nil means the new text was just inserted. */
1236
1237 void
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;
1241 {
1242 int nchars_del = 0, nbytes_del = 0;
1243
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))
1247 abort ();
1248 #endif
1249
1250 if (STRINGP (prev_text))
1251 {
1252 nchars_del = XSTRING (prev_text)->size;
1253 nbytes_del = STRING_BYTES (XSTRING (prev_text));
1254 }
1255
1256 /* Update various buffer positions for the new text. */
1257 GAP_SIZE -= len_byte;
1258 ZV += len; Z+= len;
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. */
1262
1263 if (nchars_del > 0)
1264 adjust_markers_for_replace (from, from_byte, nchars_del, nbytes_del,
1265 len, len_byte);
1266 else
1267 adjust_markers_for_insert (from, from_byte,
1268 from + len, from_byte + len_byte, 0);
1269
1270 if (! EQ (current_buffer->undo_list, Qt))
1271 {
1272 if (nchars_del > 0)
1273 record_delete (from, prev_text);
1274 record_insert (from, len);
1275 }
1276
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)
1282 {
1283 offset_intervals (current_buffer, from, len - nchars_del);
1284 }
1285
1286 if (from < PT)
1287 adjust_point (len - nchars_del, len_byte - nbytes_del);
1288
1289 /* As byte combining will decrease Z, we must check this again. */
1290 if (Z - GPT < END_UNCHANGED)
1291 END_UNCHANGED = Z - GPT;
1292
1293 CHECK_MARKERS ();
1294
1295 if (len == 0)
1296 evaporate_overlays (from);
1297 MODIFF++;
1298 }
1299
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. */
1304
1305 void
1306 adjust_after_insert (from, from_byte, to, to_byte, newlen)
1307 int from, from_byte, to, to_byte, newlen;
1308 {
1309 int len = to - from, len_byte = to_byte - from_byte;
1310
1311 if (GPT != to)
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);
1318 }
1319
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. */
1324
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.
1329
1330 But if MARKERS is 0, don't relocate markers. */
1331
1332 void
1333 replace_range (from, to, new, prepare, inherit, markers)
1334 Lisp_Object new;
1335 int from, to, prepare, inherit, markers;
1336 {
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;
1343 INTERVAL intervals;
1344 int outgoing_insbytes = insbytes;
1345 Lisp_Object deletion;
1346
1347 CHECK_MARKERS ();
1348
1349 GCPRO1 (new);
1350 deletion = Qnil;
1351
1352 if (prepare)
1353 {
1354 int range_length = to - from;
1355 prepare_to_modify_buffer (from, to, &from);
1356 to = from + range_length;
1357 }
1358
1359 UNGCPRO;
1360
1361 /* Make args be valid */
1362 if (from < BEGV)
1363 from = BEGV;
1364 if (to > ZV)
1365 to = ZV;
1366
1367 from_byte = CHAR_TO_BYTE (from);
1368 to_byte = CHAR_TO_BYTE (to);
1369
1370 nchars_del = to - from;
1371 nbytes_del = to_byte - from_byte;
1372
1373 if (nbytes_del <= 0 && insbytes == 0)
1374 return;
1375
1376 /* Make OUTGOING_INSBYTES describe the text
1377 as it will be inserted in this buffer. */
1378
1379 if (NILP (current_buffer->enable_multibyte_characters))
1380 outgoing_insbytes = inschars;
1381 else if (! STRING_MULTIBYTE (new))
1382 outgoing_insbytes
1383 = count_size_as_multibyte (XSTRING (new)->data, insbytes);
1384
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");
1389
1390 GCPRO1 (new);
1391
1392 /* Make sure the gap is somewhere in or next to what we are deleting. */
1393 if (from > GPT)
1394 gap_right (from, from_byte);
1395 if (to < GPT)
1396 gap_left (to, to_byte, 0);
1397
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
1400 combining. */
1401 if (! EQ (current_buffer->undo_list, Qt))
1402 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1403
1404 if (markers)
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);
1410
1411 GAP_SIZE += nbytes_del;
1412 ZV -= nchars_del;
1413 Z -= nchars_del;
1414 ZV_BYTE -= nbytes_del;
1415 Z_BYTE -= nbytes_del;
1416 GPT = from;
1417 GPT_BYTE = from_byte;
1418 *(GPT_ADDR) = 0; /* Put an anchor. */
1419
1420 if (GPT_BYTE < GPT)
1421 abort ();
1422
1423 if (GPT - BEG < BEG_UNCHANGED)
1424 BEG_UNCHANGED = GPT - BEG;
1425 if (Z - GPT < END_UNCHANGED)
1426 END_UNCHANGED = Z - GPT;
1427
1428 if (GAP_SIZE < insbytes)
1429 make_gap (insbytes - GAP_SIZE);
1430
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));
1436
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))
1445 abort ();
1446 #endif
1447
1448 if (! EQ (current_buffer->undo_list, Qt))
1449 {
1450 record_delete (from, deletion);
1451 record_insert (from, inschars);
1452 }
1453
1454 GAP_SIZE -= outgoing_insbytes;
1455 GPT += inschars;
1456 ZV += inschars;
1457 Z += inschars;
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. */
1462
1463 if (GPT_BYTE < GPT)
1464 abort ();
1465
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);
1470 if (markers)
1471 adjust_markers_for_insert (from, from_byte,
1472 from + inschars, from_byte + outgoing_insbytes,
1473 0);
1474
1475 offset_intervals (current_buffer, from, inschars - nchars_del);
1476
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);
1483
1484 /* Relocate point as if it were a marker. */
1485 if (from < PT)
1486 adjust_point ((from + inschars - (PT < to ? PT : to)),
1487 (from_byte + outgoing_insbytes
1488 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
1489
1490 if (outgoing_insbytes == 0)
1491 evaporate_overlays (from);
1492
1493 CHECK_MARKERS ();
1494
1495 MODIFF++;
1496 UNGCPRO;
1497
1498 signal_after_change (from, nchars_del, GPT - from);
1499 update_compositions (from, GPT, CHECK_BORDER);
1500 }
1501 \f
1502 /* Delete characters in current buffer
1503 from FROM up to (but not including) TO.
1504 If TO comes before FROM, we delete nothing. */
1505
1506 void
1507 del_range (from, to)
1508 register int from, to;
1509 {
1510 del_range_1 (from, to, 1, 0);
1511 }
1512
1513 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1514 RET_STRING says to return the deleted text. */
1515
1516 Lisp_Object
1517 del_range_1 (from, to, prepare, ret_string)
1518 int from, to, prepare, ret_string;
1519 {
1520 int from_byte, to_byte;
1521 Lisp_Object deletion;
1522 struct gcpro gcpro1;
1523
1524 /* Make args be valid */
1525 if (from < BEGV)
1526 from = BEGV;
1527 if (to > ZV)
1528 to = ZV;
1529
1530 if (to <= from)
1531 return Qnil;
1532
1533 if (prepare)
1534 {
1535 int range_length = to - from;
1536 prepare_to_modify_buffer (from, to, &from);
1537 to = from + range_length;
1538 }
1539
1540 from_byte = CHAR_TO_BYTE (from);
1541 to_byte = CHAR_TO_BYTE (to);
1542
1543 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
1544 GCPRO1(deletion);
1545 signal_after_change (from, to - from, 0);
1546 update_compositions (from, from, CHECK_HEAD);
1547 UNGCPRO;
1548 return deletion;
1549 }
1550
1551 /* Like del_range_1 but args are byte positions, not char positions. */
1552
1553 void
1554 del_range_byte (from_byte, to_byte, prepare)
1555 int from_byte, to_byte, prepare;
1556 {
1557 int from, to;
1558
1559 /* Make args be valid */
1560 if (from_byte < BEGV_BYTE)
1561 from_byte = BEGV_BYTE;
1562 if (to_byte > ZV_BYTE)
1563 to_byte = ZV_BYTE;
1564
1565 if (to_byte <= from_byte)
1566 return;
1567
1568 from = BYTE_TO_CHAR (from_byte);
1569 to = BYTE_TO_CHAR (to_byte);
1570
1571 if (prepare)
1572 {
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;
1577
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);
1582 }
1583
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);
1587 }
1588
1589 /* Like del_range_1, but positions are specified both as charpos
1590 and bytepos. */
1591
1592 void
1593 del_range_both (from, from_byte, to, to_byte, prepare)
1594 int from, from_byte, to, to_byte, prepare;
1595 {
1596 /* Make args be valid */
1597 if (from_byte < BEGV_BYTE)
1598 from_byte = BEGV_BYTE;
1599 if (to_byte > ZV_BYTE)
1600 to_byte = ZV_BYTE;
1601
1602 if (to_byte <= from_byte)
1603 return;
1604
1605 if (from < BEGV)
1606 from = BEGV;
1607 if (to > ZV)
1608 to = ZV;
1609
1610 if (prepare)
1611 {
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;
1616
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);
1621 }
1622
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);
1626 }
1627
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. */
1632
1633 Lisp_Object
1634 del_range_2 (from, from_byte, to, to_byte, ret_string)
1635 int from, from_byte, to, to_byte, ret_string;
1636 {
1637 register int nbytes_del, nchars_del;
1638 Lisp_Object deletion;
1639
1640 CHECK_MARKERS ();
1641
1642 nchars_del = to - from;
1643 nbytes_del = to_byte - from_byte;
1644
1645 /* Make sure the gap is somewhere in or next to what we are deleting. */
1646 if (from > GPT)
1647 gap_right (from, from_byte);
1648 if (to < GPT)
1649 gap_left (to, to_byte, 0);
1650
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))
1654 abort ();
1655 #endif
1656
1657 if (ret_string || ! EQ (current_buffer->undo_list, Qt))
1658 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1659 else
1660 deletion = Qnil;
1661
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);
1667
1668 if (! EQ (current_buffer->undo_list, Qt))
1669 record_delete (from, deletion);
1670 MODIFF++;
1671
1672 /* Relocate point as if it were a marker. */
1673 if (from < PT)
1674 adjust_point (from - (PT < to ? PT : to),
1675 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
1676
1677 offset_intervals (current_buffer, from, - nchars_del);
1678
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);
1682
1683 GAP_SIZE += nbytes_del;
1684 ZV_BYTE -= nbytes_del;
1685 Z_BYTE -= nbytes_del;
1686 ZV -= nchars_del;
1687 Z -= nchars_del;
1688 GPT = from;
1689 GPT_BYTE = from_byte;
1690 *(GPT_ADDR) = 0; /* Put an anchor. */
1691
1692 if (GPT_BYTE < GPT)
1693 abort ();
1694
1695 if (GPT - BEG < BEG_UNCHANGED)
1696 BEG_UNCHANGED = GPT - BEG;
1697 if (Z - GPT < END_UNCHANGED)
1698 END_UNCHANGED = Z - GPT;
1699
1700 CHECK_MARKERS ();
1701
1702 evaporate_overlays (from);
1703
1704 return deletion;
1705 }
1706 \f
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
1711 area. */
1712
1713 void
1714 modify_region (buffer, start, end)
1715 struct buffer *buffer;
1716 int start, end;
1717 {
1718 struct buffer *old_buffer = current_buffer;
1719
1720 if (buffer != old_buffer)
1721 set_buffer_internal (buffer);
1722
1723 prepare_to_modify_buffer (start, end, NULL);
1724
1725 BUF_COMPUTE_UNCHANGED (buffer, start - 1, end);
1726
1727 if (MODIFF <= SAVE_MODIFF)
1728 record_first_change ();
1729 MODIFF++;
1730
1731 buffer->point_before_scroll = Qnil;
1732
1733 if (buffer != old_buffer)
1734 set_buffer_internal (old_buffer);
1735 }
1736 \f
1737 /* Check that it is okay to modify the buffer between START and END,
1738 which are char positions.
1739
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.
1743
1744 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1745 by holding its value temporarily in a marker. */
1746
1747 void
1748 prepare_to_modify_buffer (start, end, preserve_ptr)
1749 int start, end;
1750 int *preserve_ptr;
1751 {
1752 if (!NILP (current_buffer->read_only))
1753 Fbarf_if_buffer_read_only ();
1754
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;
1759
1760 if (BUF_INTERVALS (current_buffer) != 0)
1761 {
1762 if (preserve_ptr)
1763 {
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);
1771 UNGCPRO;
1772 }
1773 else
1774 verify_interval_modification (current_buffer, start, end);
1775 }
1776
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);
1783 #else
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 */
1792
1793 signal_before_change (start, end, preserve_ptr);
1794
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);
1803
1804 Vdeactivate_mark = Qt;
1805 }
1806 \f
1807 /* These macros work with an argument named `preserve_ptr'
1808 and a local variable named `preserve_marker'. */
1809
1810 #define PRESERVE_VALUE \
1811 if (preserve_ptr && NILP (preserve_marker)) \
1812 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1813
1814 #define RESTORE_VALUE \
1815 if (! NILP (preserve_marker)) \
1816 { \
1817 *preserve_ptr = marker_position (preserve_marker); \
1818 unchain_marker (preserve_marker); \
1819 }
1820
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);
1826
1827 #define FETCH_START \
1828 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1829
1830 #define FETCH_END \
1831 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1832
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.
1835
1836 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1837 by holding its value temporarily in a marker. */
1838
1839 void
1840 signal_before_change (start_int, end_int, preserve_ptr)
1841 int start_int, end_int;
1842 int *preserve_ptr;
1843 {
1844 Lisp_Object start, end;
1845 Lisp_Object start_marker, end_marker;
1846 Lisp_Object preserve_marker;
1847 struct gcpro gcpro1, gcpro2, gcpro3;
1848
1849 if (inhibit_modification_hooks)
1850 return;
1851
1852 start = make_number (start_int);
1853 end = make_number (end_int);
1854 preserve_marker = Qnil;
1855 start_marker = Qnil;
1856 end_marker = Qnil;
1857 GCPRO3 (preserve_marker, start_marker, end_marker);
1858
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))
1863 {
1864 PRESERVE_VALUE;
1865 PRESERVE_START_END;
1866 call1 (Vrun_hooks, Qfirst_change_hook);
1867 }
1868
1869 /* Now run the before-change-functions if any. */
1870 if (!NILP (Vbefore_change_functions))
1871 {
1872 Lisp_Object args[3];
1873 Lisp_Object before_change_functions;
1874 Lisp_Object after_change_functions;
1875 struct gcpro gcpro1, gcpro2;
1876
1877 PRESERVE_VALUE;
1878 PRESERVE_START_END;
1879
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);
1888
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);
1894
1895 /* "Unbind" the variables we "bound" to nil. */
1896 Vbefore_change_functions = before_change_functions;
1897 Vafter_change_functions = after_change_functions;
1898 UNGCPRO;
1899 }
1900
1901 if (!NILP (current_buffer->overlays_before)
1902 || !NILP (current_buffer->overlays_after))
1903 {
1904 PRESERVE_VALUE;
1905 report_overlay_modification (FETCH_START, FETCH_END, 0,
1906 FETCH_START, FETCH_END, Qnil);
1907 }
1908
1909 if (! NILP (start_marker))
1910 free_marker (start_marker);
1911 if (! NILP (end_marker))
1912 free_marker (end_marker);
1913 RESTORE_VALUE;
1914 UNGCPRO;
1915 }
1916
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. */
1923
1924 void
1925 signal_after_change (charpos, lendel, lenins)
1926 int charpos, lendel, lenins;
1927 {
1928 if (inhibit_modification_hooks)
1929 return;
1930
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))
1938 {
1939 Lisp_Object elt;
1940
1941 if (!NILP (combine_after_change_list)
1942 && current_buffer != XBUFFER (combine_after_change_buffer))
1943 Fcombine_after_change_execute ();
1944
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 ();
1951
1952 return;
1953 }
1954
1955 if (!NILP (combine_after_change_list))
1956 Fcombine_after_change_execute ();
1957
1958 if (!NILP (Vafter_change_functions))
1959 {
1960 Lisp_Object args[4];
1961 Lisp_Object before_change_functions;
1962 Lisp_Object after_change_functions;
1963 struct gcpro gcpro1, gcpro2;
1964
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);
1973
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,
1980 4, args);
1981
1982 /* "Unbind" the variables we "bound" to nil. */
1983 Vbefore_change_functions = before_change_functions;
1984 Vafter_change_functions = after_change_functions;
1985 UNGCPRO;
1986 }
1987
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),
1992 1,
1993 make_number (charpos),
1994 make_number (charpos + lenins),
1995 make_number (lendel));
1996
1997 /* After an insertion, call the text properties
1998 insert-behind-hooks or insert-in-front-hooks. */
1999 if (lendel == 0)
2000 report_interval_modification (make_number (charpos),
2001 make_number (charpos + lenins));
2002 }
2003
2004 Lisp_Object
2005 Fcombine_after_change_execute_1 (val)
2006 Lisp_Object val;
2007 {
2008 Vcombine_after_change_calls = val;
2009 return val;
2010 }
2011
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'.")
2015 ()
2016 {
2017 int count = specpdl_ptr - specpdl;
2018 int beg, end, change;
2019 int begpos, endpos;
2020 Lisp_Object tail;
2021
2022 if (NILP (combine_after_change_list))
2023 return Qnil;
2024
2025 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
2026
2027 Fset_buffer (combine_after_change_buffer);
2028
2029 /* # chars unchanged at beginning of buffer. */
2030 beg = Z - BEG;
2031 /* # chars unchanged at end of buffer. */
2032 end = beg;
2033 /* Total amount of insertion (negative for deletion). */
2034 change = 0;
2035
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);
2039 tail = XCDR (tail))
2040 {
2041 Lisp_Object elt;
2042 int thisbeg, thisend, thischange;
2043
2044 /* Extract the info from the next element. */
2045 elt = XCAR (tail);
2046 if (! CONSP (elt))
2047 continue;
2048 thisbeg = XINT (XCAR (elt));
2049
2050 elt = XCDR (elt);
2051 if (! CONSP (elt))
2052 continue;
2053 thisend = XINT (XCAR (elt));
2054
2055 elt = XCDR (elt);
2056 if (! CONSP (elt))
2057 continue;
2058 thischange = XINT (XCAR (elt));
2059
2060 /* Merge this range into the accumulated range. */
2061 change += thischange;
2062 if (thisbeg < beg)
2063 beg = thisbeg;
2064 if (thisend < end)
2065 end = thisend;
2066 }
2067
2068 /* Get the current start and end positions of the range
2069 that was changed. */
2070 begpos = BEG + beg;
2071 endpos = Z - end;
2072
2073 /* We are about to handle these, so discard them. */
2074 combine_after_change_list = Qnil;
2075
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);
2082
2083 return unbind_to (count, Qnil);
2084 }
2085 \f
2086 void
2087 syms_of_insdel ()
2088 {
2089 staticpro (&combine_after_change_list);
2090 combine_after_change_list = Qnil;
2091 combine_after_change_buffer = Qnil;
2092
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;
2099
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;
2105
2106 defsubr (&Scombine_after_change_execute);
2107 }