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