(make_gap): Use enlarge_buffer_text.
[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
1351 if (prepare)
1352 {
1353 int range_length = to - from;
1354 prepare_to_modify_buffer (from, to, &from);
1355 to = from + range_length;
1356 }
1357
1358 UNGCPRO;
1359
1360 /* Make args be valid */
1361 if (from < BEGV)
1362 from = BEGV;
1363 if (to > ZV)
1364 to = ZV;
1365
1366 from_byte = CHAR_TO_BYTE (from);
1367 to_byte = CHAR_TO_BYTE (to);
1368
1369 nchars_del = to - from;
1370 nbytes_del = to_byte - from_byte;
1371
1372 if (nbytes_del <= 0 && insbytes == 0)
1373 return;
1374
1375 /* Make OUTGOING_INSBYTES describe the text
1376 as it will be inserted in this buffer. */
1377
1378 if (NILP (current_buffer->enable_multibyte_characters))
1379 outgoing_insbytes = inschars;
1380 else if (! STRING_MULTIBYTE (new))
1381 outgoing_insbytes
1382 = count_size_as_multibyte (XSTRING (new)->data, insbytes);
1383
1384 /* Make sure point-max won't overflow after this insertion. */
1385 XSETINT (temp, Z_BYTE - nbytes_del + insbytes);
1386 if (Z_BYTE - nbytes_del + insbytes != XINT (temp))
1387 error ("Maximum buffer size exceeded");
1388
1389 GCPRO1 (new);
1390
1391 /* Make sure the gap is somewhere in or next to what we are deleting. */
1392 if (from > GPT)
1393 gap_right (from, from_byte);
1394 if (to < GPT)
1395 gap_left (to, to_byte, 0);
1396
1397 /* Even if we don't record for undo, we must keep the original text
1398 because we may have to recover it because of inappropriate byte
1399 combining. */
1400 if (! EQ (current_buffer->undo_list, Qt))
1401 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1402
1403 if (markers)
1404 /* Relocate all markers pointing into the new, larger gap
1405 to point at the end of the text before the gap.
1406 Do this before recording the deletion,
1407 so that undo handles this after reinserting the text. */
1408 adjust_markers_for_delete (from, from_byte, to, to_byte);
1409
1410 GAP_SIZE += nbytes_del;
1411 ZV -= nchars_del;
1412 Z -= nchars_del;
1413 ZV_BYTE -= nbytes_del;
1414 Z_BYTE -= nbytes_del;
1415 GPT = from;
1416 GPT_BYTE = from_byte;
1417 *(GPT_ADDR) = 0; /* Put an anchor. */
1418
1419 if (GPT_BYTE < GPT)
1420 abort ();
1421
1422 if (GPT - BEG < BEG_UNCHANGED)
1423 BEG_UNCHANGED = GPT - BEG;
1424 if (Z - GPT < END_UNCHANGED)
1425 END_UNCHANGED = Z - GPT;
1426
1427 if (GAP_SIZE < insbytes)
1428 make_gap (insbytes - GAP_SIZE);
1429
1430 /* Copy the string text into the buffer, perhaps converting
1431 between single-byte and multibyte. */
1432 copy_text (XSTRING (new)->data, GPT_ADDR, insbytes,
1433 STRING_MULTIBYTE (new),
1434 ! NILP (current_buffer->enable_multibyte_characters));
1435
1436 #ifdef BYTE_COMBINING_DEBUG
1437 /* We have copied text into the gap, but we have not marked
1438 it as part of the buffer. So we can use the old FROM and FROM_BYTE
1439 here, for both the previous text and the following text.
1440 Meanwhile, GPT_ADDR does point to
1441 the text that has been stored by copy_text. */
1442 if (count_combining_before (GPT_ADDR, outgoing_insbytes, from, from_byte)
1443 || count_combining_after (GPT_ADDR, outgoing_insbytes, from, from_byte))
1444 abort ();
1445 #endif
1446
1447 if (! EQ (current_buffer->undo_list, Qt))
1448 {
1449 record_delete (from, deletion);
1450 record_insert (from, inschars);
1451 }
1452
1453 GAP_SIZE -= outgoing_insbytes;
1454 GPT += inschars;
1455 ZV += inschars;
1456 Z += inschars;
1457 GPT_BYTE += outgoing_insbytes;
1458 ZV_BYTE += outgoing_insbytes;
1459 Z_BYTE += outgoing_insbytes;
1460 if (GAP_SIZE > 0) *(GPT_ADDR) = 0; /* Put an anchor. */
1461
1462 if (GPT_BYTE < GPT)
1463 abort ();
1464
1465 /* Adjust the overlay center as needed. This must be done after
1466 adjusting the markers that bound the overlays. */
1467 adjust_overlays_for_delete (from, nchars_del);
1468 adjust_overlays_for_insert (from, inschars);
1469 if (markers)
1470 adjust_markers_for_insert (from, from_byte,
1471 from + inschars, from_byte + outgoing_insbytes,
1472 0);
1473
1474 offset_intervals (current_buffer, from, inschars - nchars_del);
1475
1476 /* Get the intervals for the part of the string we are inserting--
1477 not including the combined-before bytes. */
1478 intervals = XSTRING (new)->intervals;
1479 /* Insert those intervals. */
1480 graft_intervals_into_buffer (intervals, from, inschars,
1481 current_buffer, inherit);
1482
1483 /* Relocate point as if it were a marker. */
1484 if (from < PT)
1485 adjust_point ((from + inschars - (PT < to ? PT : to)),
1486 (from_byte + outgoing_insbytes
1487 - (PT_BYTE < to_byte ? PT_BYTE : to_byte)));
1488
1489 if (outgoing_insbytes == 0)
1490 evaporate_overlays (from);
1491
1492 CHECK_MARKERS ();
1493
1494 MODIFF++;
1495 UNGCPRO;
1496
1497 signal_after_change (from, nchars_del, GPT - from);
1498 update_compositions (from, GPT, CHECK_BORDER);
1499 }
1500 \f
1501 /* Delete characters in current buffer
1502 from FROM up to (but not including) TO.
1503 If TO comes before FROM, we delete nothing. */
1504
1505 void
1506 del_range (from, to)
1507 register int from, to;
1508 {
1509 del_range_1 (from, to, 1, 0);
1510 }
1511
1512 /* Like del_range; PREPARE says whether to call prepare_to_modify_buffer.
1513 RET_STRING says to return the deleted text. */
1514
1515 Lisp_Object
1516 del_range_1 (from, to, prepare, ret_string)
1517 int from, to, prepare, ret_string;
1518 {
1519 int from_byte, to_byte;
1520 Lisp_Object deletion;
1521 struct gcpro gcpro1;
1522
1523 /* Make args be valid */
1524 if (from < BEGV)
1525 from = BEGV;
1526 if (to > ZV)
1527 to = ZV;
1528
1529 if (to <= from)
1530 return Qnil;
1531
1532 if (prepare)
1533 {
1534 int range_length = to - from;
1535 prepare_to_modify_buffer (from, to, &from);
1536 to = from + range_length;
1537 }
1538
1539 from_byte = CHAR_TO_BYTE (from);
1540 to_byte = CHAR_TO_BYTE (to);
1541
1542 deletion = del_range_2 (from, from_byte, to, to_byte, ret_string);
1543 GCPRO1(deletion);
1544 signal_after_change (from, to - from, 0);
1545 update_compositions (from, from, CHECK_HEAD);
1546 UNGCPRO;
1547 return deletion;
1548 }
1549
1550 /* Like del_range_1 but args are byte positions, not char positions. */
1551
1552 void
1553 del_range_byte (from_byte, to_byte, prepare)
1554 int from_byte, to_byte, prepare;
1555 {
1556 int from, to;
1557
1558 /* Make args be valid */
1559 if (from_byte < BEGV_BYTE)
1560 from_byte = BEGV_BYTE;
1561 if (to_byte > ZV_BYTE)
1562 to_byte = ZV_BYTE;
1563
1564 if (to_byte <= from_byte)
1565 return;
1566
1567 from = BYTE_TO_CHAR (from_byte);
1568 to = BYTE_TO_CHAR (to_byte);
1569
1570 if (prepare)
1571 {
1572 int old_from = from, old_to = Z - to;
1573 int range_length = to - from;
1574 prepare_to_modify_buffer (from, to, &from);
1575 to = from + range_length;
1576
1577 if (old_from != from)
1578 from_byte = CHAR_TO_BYTE (from);
1579 if (old_to == Z - to)
1580 to_byte = CHAR_TO_BYTE (to);
1581 }
1582
1583 del_range_2 (from, from_byte, to, to_byte, 0);
1584 signal_after_change (from, to - from, 0);
1585 update_compositions (from, from, CHECK_HEAD);
1586 }
1587
1588 /* Like del_range_1, but positions are specified both as charpos
1589 and bytepos. */
1590
1591 void
1592 del_range_both (from, from_byte, to, to_byte, prepare)
1593 int from, from_byte, to, to_byte, prepare;
1594 {
1595 /* Make args be valid */
1596 if (from_byte < BEGV_BYTE)
1597 from_byte = BEGV_BYTE;
1598 if (to_byte > ZV_BYTE)
1599 to_byte = ZV_BYTE;
1600
1601 if (to_byte <= from_byte)
1602 return;
1603
1604 if (from < BEGV)
1605 from = BEGV;
1606 if (to > ZV)
1607 to = ZV;
1608
1609 if (prepare)
1610 {
1611 int old_from = from, old_to = Z - to;
1612 int range_length = to - from;
1613 prepare_to_modify_buffer (from, to, &from);
1614 to = from + range_length;
1615
1616 if (old_from != from)
1617 from_byte = CHAR_TO_BYTE (from);
1618 if (old_to == Z - to)
1619 to_byte = CHAR_TO_BYTE (to);
1620 }
1621
1622 del_range_2 (from, from_byte, to, to_byte, 0);
1623 signal_after_change (from, to - from, 0);
1624 update_compositions (from, from, CHECK_HEAD);
1625 }
1626
1627 /* Delete a range of text, specified both as character positions
1628 and byte positions. FROM and TO are character positions,
1629 while FROM_BYTE and TO_BYTE are byte positions.
1630 If RET_STRING is true, the deleted area is returned as a string. */
1631
1632 Lisp_Object
1633 del_range_2 (from, from_byte, to, to_byte, ret_string)
1634 int from, from_byte, to, to_byte, ret_string;
1635 {
1636 register int nbytes_del, nchars_del;
1637 Lisp_Object deletion;
1638
1639 CHECK_MARKERS ();
1640
1641 nchars_del = to - from;
1642 nbytes_del = to_byte - from_byte;
1643
1644 /* Make sure the gap is somewhere in or next to what we are deleting. */
1645 if (from > GPT)
1646 gap_right (from, from_byte);
1647 if (to < GPT)
1648 gap_left (to, to_byte, 0);
1649
1650 #ifdef BYTE_COMBINING_DEBUG
1651 if (count_combining_before (BUF_BYTE_ADDRESS (current_buffer, to_byte),
1652 Z_BYTE - to_byte, from, from_byte))
1653 abort ();
1654 #endif
1655
1656 if (ret_string || ! EQ (current_buffer->undo_list, Qt))
1657 deletion = make_buffer_string_both (from, from_byte, to, to_byte, 1);
1658 else
1659 deletion = Qnil;
1660
1661 /* Relocate all markers pointing into the new, larger gap
1662 to point at the end of the text before the gap.
1663 Do this before recording the deletion,
1664 so that undo handles this after reinserting the text. */
1665 adjust_markers_for_delete (from, from_byte, to, to_byte);
1666
1667 if (! EQ (current_buffer->undo_list, Qt))
1668 record_delete (from, deletion);
1669 MODIFF++;
1670
1671 /* Relocate point as if it were a marker. */
1672 if (from < PT)
1673 adjust_point (from - (PT < to ? PT : to),
1674 from_byte - (PT_BYTE < to_byte ? PT_BYTE : to_byte));
1675
1676 offset_intervals (current_buffer, from, - nchars_del);
1677
1678 /* Adjust the overlay center as needed. This must be done after
1679 adjusting the markers that bound the overlays. */
1680 adjust_overlays_for_delete (from, nchars_del);
1681
1682 GAP_SIZE += nbytes_del;
1683 ZV_BYTE -= nbytes_del;
1684 Z_BYTE -= nbytes_del;
1685 ZV -= nchars_del;
1686 Z -= nchars_del;
1687 GPT = from;
1688 GPT_BYTE = from_byte;
1689 *(GPT_ADDR) = 0; /* Put an anchor. */
1690
1691 if (GPT_BYTE < GPT)
1692 abort ();
1693
1694 if (GPT - BEG < BEG_UNCHANGED)
1695 BEG_UNCHANGED = GPT - BEG;
1696 if (Z - GPT < END_UNCHANGED)
1697 END_UNCHANGED = Z - GPT;
1698
1699 CHECK_MARKERS ();
1700
1701 evaporate_overlays (from);
1702
1703 return deletion;
1704 }
1705 \f
1706 /* Call this if you're about to change the region of BUFFER from
1707 character positions START to END. This checks the read-only
1708 properties of the region, calls the necessary modification hooks,
1709 and warns the next redisplay that it should pay attention to that
1710 area. */
1711
1712 void
1713 modify_region (buffer, start, end)
1714 struct buffer *buffer;
1715 int start, end;
1716 {
1717 struct buffer *old_buffer = current_buffer;
1718
1719 if (buffer != old_buffer)
1720 set_buffer_internal (buffer);
1721
1722 prepare_to_modify_buffer (start, end, NULL);
1723
1724 BUF_COMPUTE_UNCHANGED (buffer, start - 1, end);
1725
1726 if (MODIFF <= SAVE_MODIFF)
1727 record_first_change ();
1728 MODIFF++;
1729
1730 buffer->point_before_scroll = Qnil;
1731
1732 if (buffer != old_buffer)
1733 set_buffer_internal (old_buffer);
1734 }
1735 \f
1736 /* Check that it is okay to modify the buffer between START and END,
1737 which are char positions.
1738
1739 Run the before-change-function, if any. If intervals are in use,
1740 verify that the text to be modified is not read-only, and call
1741 any modification properties the text may have.
1742
1743 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1744 by holding its value temporarily in a marker. */
1745
1746 void
1747 prepare_to_modify_buffer (start, end, preserve_ptr)
1748 int start, end;
1749 int *preserve_ptr;
1750 {
1751 if (!NILP (current_buffer->read_only))
1752 Fbarf_if_buffer_read_only ();
1753
1754 /* Let redisplay consider other windows than selected_window
1755 if modifying another buffer. */
1756 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1757 ++windows_or_buffers_changed;
1758
1759 if (BUF_INTERVALS (current_buffer) != 0)
1760 {
1761 if (preserve_ptr)
1762 {
1763 Lisp_Object preserve_marker;
1764 struct gcpro gcpro1;
1765 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil);
1766 GCPRO1 (preserve_marker);
1767 verify_interval_modification (current_buffer, start, end);
1768 *preserve_ptr = marker_position (preserve_marker);
1769 unchain_marker (preserve_marker);
1770 UNGCPRO;
1771 }
1772 else
1773 verify_interval_modification (current_buffer, start, end);
1774 }
1775
1776 #ifdef CLASH_DETECTION
1777 if (!NILP (current_buffer->file_truename)
1778 /* Make binding buffer-file-name to nil effective. */
1779 && !NILP (current_buffer->filename)
1780 && SAVE_MODIFF >= MODIFF)
1781 lock_file (current_buffer->file_truename);
1782 #else
1783 /* At least warn if this file has changed on disk since it was visited. */
1784 if (!NILP (current_buffer->filename)
1785 && SAVE_MODIFF >= MODIFF
1786 && NILP (Fverify_visited_file_modtime (Fcurrent_buffer ()))
1787 && !NILP (Ffile_exists_p (current_buffer->filename)))
1788 call1 (intern ("ask-user-about-supersession-threat"),
1789 current_buffer->filename);
1790 #endif /* not CLASH_DETECTION */
1791
1792 signal_before_change (start, end, preserve_ptr);
1793
1794 if (current_buffer->newline_cache)
1795 invalidate_region_cache (current_buffer,
1796 current_buffer->newline_cache,
1797 start - BEG, Z - end);
1798 if (current_buffer->width_run_cache)
1799 invalidate_region_cache (current_buffer,
1800 current_buffer->width_run_cache,
1801 start - BEG, Z - end);
1802
1803 Vdeactivate_mark = Qt;
1804 }
1805 \f
1806 /* These macros work with an argument named `preserve_ptr'
1807 and a local variable named `preserve_marker'. */
1808
1809 #define PRESERVE_VALUE \
1810 if (preserve_ptr && NILP (preserve_marker)) \
1811 preserve_marker = Fcopy_marker (make_number (*preserve_ptr), Qnil)
1812
1813 #define RESTORE_VALUE \
1814 if (! NILP (preserve_marker)) \
1815 { \
1816 *preserve_ptr = marker_position (preserve_marker); \
1817 unchain_marker (preserve_marker); \
1818 }
1819
1820 #define PRESERVE_START_END \
1821 if (NILP (start_marker)) \
1822 start_marker = Fcopy_marker (start, Qnil); \
1823 if (NILP (end_marker)) \
1824 end_marker = Fcopy_marker (end, Qnil);
1825
1826 #define FETCH_START \
1827 (! NILP (start_marker) ? Fmarker_position (start_marker) : start)
1828
1829 #define FETCH_END \
1830 (! NILP (end_marker) ? Fmarker_position (end_marker) : end)
1831
1832 /* Signal a change to the buffer immediately before it happens.
1833 START_INT and END_INT are the bounds of the text to be changed.
1834
1835 If PRESERVE_PTR is nonzero, we relocate *PRESERVE_PTR
1836 by holding its value temporarily in a marker. */
1837
1838 void
1839 signal_before_change (start_int, end_int, preserve_ptr)
1840 int start_int, end_int;
1841 int *preserve_ptr;
1842 {
1843 Lisp_Object start, end;
1844 Lisp_Object start_marker, end_marker;
1845 Lisp_Object preserve_marker;
1846 struct gcpro gcpro1, gcpro2, gcpro3;
1847
1848 if (inhibit_modification_hooks)
1849 return;
1850
1851 start = make_number (start_int);
1852 end = make_number (end_int);
1853 preserve_marker = Qnil;
1854 start_marker = Qnil;
1855 end_marker = Qnil;
1856 GCPRO3 (preserve_marker, start_marker, end_marker);
1857
1858 /* If buffer is unmodified, run a special hook for that case. */
1859 if (SAVE_MODIFF >= MODIFF
1860 && !NILP (Vfirst_change_hook)
1861 && !NILP (Vrun_hooks))
1862 {
1863 PRESERVE_VALUE;
1864 PRESERVE_START_END;
1865 call1 (Vrun_hooks, Qfirst_change_hook);
1866 }
1867
1868 /* Now run the before-change-functions if any. */
1869 if (!NILP (Vbefore_change_functions))
1870 {
1871 Lisp_Object args[3];
1872 Lisp_Object before_change_functions;
1873 Lisp_Object after_change_functions;
1874 struct gcpro gcpro1, gcpro2;
1875
1876 PRESERVE_VALUE;
1877 PRESERVE_START_END;
1878
1879 /* "Bind" before-change-functions and after-change-functions
1880 to nil--but in a way that errors don't know about.
1881 That way, if there's an error in them, they will stay nil. */
1882 before_change_functions = Vbefore_change_functions;
1883 after_change_functions = Vafter_change_functions;
1884 Vbefore_change_functions = Qnil;
1885 Vafter_change_functions = Qnil;
1886 GCPRO2 (before_change_functions, after_change_functions);
1887
1888 /* Actually run the hook functions. */
1889 args[0] = Qbefore_change_functions;
1890 args[1] = FETCH_START;
1891 args[2] = FETCH_END;
1892 run_hook_list_with_args (before_change_functions, 3, args);
1893
1894 /* "Unbind" the variables we "bound" to nil. */
1895 Vbefore_change_functions = before_change_functions;
1896 Vafter_change_functions = after_change_functions;
1897 UNGCPRO;
1898 }
1899
1900 if (!NILP (current_buffer->overlays_before)
1901 || !NILP (current_buffer->overlays_after))
1902 {
1903 PRESERVE_VALUE;
1904 report_overlay_modification (FETCH_START, FETCH_END, 0,
1905 FETCH_START, FETCH_END, Qnil);
1906 }
1907
1908 if (! NILP (start_marker))
1909 free_marker (start_marker);
1910 if (! NILP (end_marker))
1911 free_marker (end_marker);
1912 RESTORE_VALUE;
1913 UNGCPRO;
1914 }
1915
1916 /* Signal a change immediately after it happens.
1917 CHARPOS is the character position of the start of the changed text.
1918 LENDEL is the number of characters of the text before the change.
1919 (Not the whole buffer; just the part that was changed.)
1920 LENINS is the number of characters in that part of the text
1921 after the change. */
1922
1923 void
1924 signal_after_change (charpos, lendel, lenins)
1925 int charpos, lendel, lenins;
1926 {
1927 if (inhibit_modification_hooks)
1928 return;
1929
1930 /* If we are deferring calls to the after-change functions
1931 and there are no before-change functions,
1932 just record the args that we were going to use. */
1933 if (! NILP (Vcombine_after_change_calls)
1934 && NILP (Vbefore_change_functions)
1935 && NILP (current_buffer->overlays_before)
1936 && NILP (current_buffer->overlays_after))
1937 {
1938 Lisp_Object elt;
1939
1940 if (!NILP (combine_after_change_list)
1941 && current_buffer != XBUFFER (combine_after_change_buffer))
1942 Fcombine_after_change_execute ();
1943
1944 elt = Fcons (make_number (charpos - BEG),
1945 Fcons (make_number (Z - (charpos - lendel + lenins)),
1946 Fcons (make_number (lenins - lendel), Qnil)));
1947 combine_after_change_list
1948 = Fcons (elt, combine_after_change_list);
1949 combine_after_change_buffer = Fcurrent_buffer ();
1950
1951 return;
1952 }
1953
1954 if (!NILP (combine_after_change_list))
1955 Fcombine_after_change_execute ();
1956
1957 if (!NILP (Vafter_change_functions))
1958 {
1959 Lisp_Object args[4];
1960 Lisp_Object before_change_functions;
1961 Lisp_Object after_change_functions;
1962 struct gcpro gcpro1, gcpro2;
1963
1964 /* "Bind" before-change-functions and after-change-functions
1965 to nil--but in a way that errors don't know about.
1966 That way, if there's an error in them, they will stay nil. */
1967 before_change_functions = Vbefore_change_functions;
1968 after_change_functions = Vafter_change_functions;
1969 Vbefore_change_functions = Qnil;
1970 Vafter_change_functions = Qnil;
1971 GCPRO2 (before_change_functions, after_change_functions);
1972
1973 /* Actually run the hook functions. */
1974 args[0] = Qafter_change_functions;
1975 XSETFASTINT (args[1], charpos);
1976 XSETFASTINT (args[2], charpos + lenins);
1977 XSETFASTINT (args[3], lendel);
1978 run_hook_list_with_args (after_change_functions,
1979 4, args);
1980
1981 /* "Unbind" the variables we "bound" to nil. */
1982 Vbefore_change_functions = before_change_functions;
1983 Vafter_change_functions = after_change_functions;
1984 UNGCPRO;
1985 }
1986
1987 if (!NILP (current_buffer->overlays_before)
1988 || !NILP (current_buffer->overlays_after))
1989 report_overlay_modification (make_number (charpos),
1990 make_number (charpos + lenins),
1991 1,
1992 make_number (charpos),
1993 make_number (charpos + lenins),
1994 make_number (lendel));
1995
1996 /* After an insertion, call the text properties
1997 insert-behind-hooks or insert-in-front-hooks. */
1998 if (lendel == 0)
1999 report_interval_modification (make_number (charpos),
2000 make_number (charpos + lenins));
2001 }
2002
2003 Lisp_Object
2004 Fcombine_after_change_execute_1 (val)
2005 Lisp_Object val;
2006 {
2007 Vcombine_after_change_calls = val;
2008 return val;
2009 }
2010
2011 DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
2012 Scombine_after_change_execute, 0, 0, 0,
2013 "This function is for use internally in `combine-after-change-calls'.")
2014 ()
2015 {
2016 int count = specpdl_ptr - specpdl;
2017 int beg, end, change;
2018 int begpos, endpos;
2019 Lisp_Object tail;
2020
2021 if (NILP (combine_after_change_list))
2022 return Qnil;
2023
2024 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
2025
2026 Fset_buffer (combine_after_change_buffer);
2027
2028 /* # chars unchanged at beginning of buffer. */
2029 beg = Z - BEG;
2030 /* # chars unchanged at end of buffer. */
2031 end = beg;
2032 /* Total amount of insertion (negative for deletion). */
2033 change = 0;
2034
2035 /* Scan the various individual changes,
2036 accumulating the range info in BEG, END and CHANGE. */
2037 for (tail = combine_after_change_list; CONSP (tail);
2038 tail = XCDR (tail))
2039 {
2040 Lisp_Object elt;
2041 int thisbeg, thisend, thischange;
2042
2043 /* Extract the info from the next element. */
2044 elt = XCAR (tail);
2045 if (! CONSP (elt))
2046 continue;
2047 thisbeg = XINT (XCAR (elt));
2048
2049 elt = XCDR (elt);
2050 if (! CONSP (elt))
2051 continue;
2052 thisend = XINT (XCAR (elt));
2053
2054 elt = XCDR (elt);
2055 if (! CONSP (elt))
2056 continue;
2057 thischange = XINT (XCAR (elt));
2058
2059 /* Merge this range into the accumulated range. */
2060 change += thischange;
2061 if (thisbeg < beg)
2062 beg = thisbeg;
2063 if (thisend < end)
2064 end = thisend;
2065 }
2066
2067 /* Get the current start and end positions of the range
2068 that was changed. */
2069 begpos = BEG + beg;
2070 endpos = Z - end;
2071
2072 /* We are about to handle these, so discard them. */
2073 combine_after_change_list = Qnil;
2074
2075 /* Now run the after-change functions for real.
2076 Turn off the flag that defers them. */
2077 record_unwind_protect (Fcombine_after_change_execute_1,
2078 Vcombine_after_change_calls);
2079 signal_after_change (begpos, endpos - begpos - change, endpos - begpos);
2080 update_compositions (begpos, endpos, CHECK_ALL);
2081
2082 return unbind_to (count, Qnil);
2083 }
2084 \f
2085 void
2086 syms_of_insdel ()
2087 {
2088 staticpro (&combine_after_change_list);
2089 combine_after_change_list = Qnil;
2090 combine_after_change_buffer = Qnil;
2091
2092 DEFVAR_BOOL ("check-markers-debug-flag", &check_markers_debug_flag,
2093 "Non-nil means enable debugging checks for invalid marker positions.");
2094 check_markers_debug_flag = 0;
2095 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls,
2096 "Used internally by the `combine-after-change-calls' macro.");
2097 Vcombine_after_change_calls = Qnil;
2098
2099 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks,
2100 "Non-nil means don't run any of the hooks that respond to buffer changes.\n\
2101 This affects `before-change-functions' and `after-change-functions',\n\
2102 as well as hooks attached to text properties and overlays.");
2103 inhibit_modification_hooks = 0;
2104
2105 defsubr (&Scombine_after_change_execute);
2106 }