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