* buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
[bpt/emacs.git] / src / undo.c
CommitLineData
c6953be1 1/* undo handling for GNU Emacs.
acaf905b 2 Copyright (C) 1990, 1993-1994, 2000-2012 Free Software Foundation, Inc.
c6953be1
JB
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
3b7ad313 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
3b7ad313 10
c6953be1 11GNU Emacs is distributed in the hope that it will be useful,
3b7ad313
EN
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c6953be1
JB
18
19
18160b98 20#include <config.h>
d7306fe6 21#include <setjmp.h>
c6953be1 22#include "lisp.h"
e5560ff7 23#include "character.h"
c6953be1 24#include "buffer.h"
4e665715 25#include "commands.h"
91e25f5e 26#include "window.h"
c6953be1
JB
27
28/* Last buffer for which undo information was recorded. */
4591d6cb 29/* BEWARE: This is not traced by the GC, so never dereference it! */
2b96acb7 30static struct buffer *last_undo_buffer;
4591d6cb
SM
31
32/* Position of point last time we inserted a boundary. */
2b96acb7 33static struct buffer *last_boundary_buffer;
d311d28c 34static ptrdiff_t last_boundary_position;
c6953be1 35
f87a68b3
RS
36Lisp_Object Qinhibit_read_only;
37
49be18c9
KS
38/* Marker for function call undo list elements. */
39
40Lisp_Object Qapply;
41
c58632fc
RS
42/* The first time a command records something for undo.
43 it also allocates the undo-boundary object
44 which will be added to the list at the end of the command.
45 This ensures we can't run out of space while trying to make
46 an undo-boundary. */
2b96acb7 47static Lisp_Object pending_boundary;
c58632fc 48
6396140a 49/* Record point as it was at beginning of this command (if necessary)
8abe0f97 50 and prepare the undo info for recording a change.
6396140a
SM
51 PT is the position of point that will naturally occur as a result of the
52 undo record that will be added just after this command terminates. */
c6953be1 53
6396140a 54static void
d311d28c 55record_point (ptrdiff_t pt)
c6953be1 56{
6396140a 57 int at_boundary;
bdbe6f28 58
4591d6cb 59 /* Don't record position of pt when undo_inhibit_record_point holds. */
8abe0f97
MR
60 if (undo_inhibit_record_point)
61 return;
62
c58632fc
RS
63 /* Allocate a cons cell to be the undo boundary after this command. */
64 if (NILP (pending_boundary))
65 pending_boundary = Fcons (Qnil, Qnil);
66
3ecc1163
MR
67 if ((current_buffer != last_undo_buffer)
68 /* Don't call Fundo_boundary for the first change. Otherwise we
69 risk overwriting last_boundary_position in Fundo_boundary with
70 PT of the current buffer and as a consequence not insert an
71 undo boundary because last_boundary_position will equal pt in
72 the test at the end of the present function (Bug#731). */
73 && (MODIFF > SAVE_MODIFF))
c6953be1 74 Fundo_boundary ();
4591d6cb 75 last_undo_buffer = current_buffer;
c6953be1 76
4b4deea2 77 if (CONSP (BVAR (current_buffer, undo_list)))
6396140a
SM
78 {
79 /* Set AT_BOUNDARY to 1 only when we have nothing other than
80 marker adjustment before undo boundary. */
81
4b4deea2 82 Lisp_Object tail = BVAR (current_buffer, undo_list), elt;
6396140a
SM
83
84 while (1)
85 {
86 if (NILP (tail))
87 elt = Qnil;
88 else
89 elt = XCAR (tail);
90 if (NILP (elt) || ! (CONSP (elt) && MARKERP (XCAR (elt))))
91 break;
92 tail = XCDR (tail);
93 }
94 at_boundary = NILP (elt);
95 }
96 else
97 at_boundary = 1;
98
ad9cdce4 99 if (MODIFF <= SAVE_MODIFF)
c6953be1
JB
100 record_first_change ();
101
177c0ea7 102 /* If we are just after an undo boundary, and
6396140a
SM
103 point wasn't at start of deleted range, record where it was. */
104 if (at_boundary
4591d6cb
SM
105 && current_buffer == last_boundary_buffer
106 && last_boundary_position != pt)
4b4deea2
TT
107 BVAR (current_buffer, undo_list)
108 = Fcons (make_number (last_boundary_position), BVAR (current_buffer, undo_list));
6396140a
SM
109}
110
111/* Record an insertion that just happened or is about to happen,
112 for LENGTH characters at position BEG.
113 (It is possible to record an insertion before or after the fact
114 because we don't need to record the contents.) */
115
116void
d311d28c 117record_insert (ptrdiff_t beg, ptrdiff_t length)
6396140a
SM
118{
119 Lisp_Object lbeg, lend;
120
4b4deea2 121 if (EQ (BVAR (current_buffer, undo_list), Qt))
6396140a
SM
122 return;
123
124 record_point (beg);
125
c6953be1
JB
126 /* If this is following another insertion and consecutive with it
127 in the buffer, combine the two. */
4b4deea2 128 if (CONSP (BVAR (current_buffer, undo_list)))
c6953be1
JB
129 {
130 Lisp_Object elt;
4b4deea2 131 elt = XCAR (BVAR (current_buffer, undo_list));
38c0d37c 132 if (CONSP (elt)
c1d497be
KR
133 && INTEGERP (XCAR (elt))
134 && INTEGERP (XCDR (elt))
135 && XINT (XCDR (elt)) == beg)
c6953be1 136 {
f3fbd155 137 XSETCDR (elt, make_number (beg + length));
c6953be1
JB
138 return;
139 }
140 }
141
53480e99
KH
142 XSETFASTINT (lbeg, beg);
143 XSETINT (lend, beg + length);
4b4deea2
TT
144 BVAR (current_buffer, undo_list) = Fcons (Fcons (lbeg, lend),
145 BVAR (current_buffer, undo_list));
c6953be1
JB
146}
147
148/* Record that a deletion is about to take place,
e928d437 149 of the characters in STRING, at location BEG. */
c6953be1 150
ff1aa840 151void
d311d28c 152record_delete (ptrdiff_t beg, Lisp_Object string)
c6953be1 153{
e928d437 154 Lisp_Object sbeg;
c6953be1 155
4b4deea2 156 if (EQ (BVAR (current_buffer, undo_list), Qt))
bdbe6f28
RS
157 return;
158
d5db4077 159 if (PT == beg + SCHARS (string))
cbc1b668 160 {
6396140a
SM
161 XSETINT (sbeg, -beg);
162 record_point (PT);
cbc1b668
KH
163 }
164 else
6396140a
SM
165 {
166 XSETFASTINT (sbeg, beg);
167 record_point (beg);
168 }
350bce56 169
4b4deea2
TT
170 BVAR (current_buffer, undo_list)
171 = Fcons (Fcons (string, sbeg), BVAR (current_buffer, undo_list));
c6953be1
JB
172}
173
714bced9
RS
174/* Record the fact that MARKER is about to be adjusted by ADJUSTMENT.
175 This is done only when a marker points within text being deleted,
176 because that's the only case where an automatic marker adjustment
177 won't be inverted automatically by undoing the buffer modification. */
178
ff1aa840 179void
d311d28c 180record_marker_adjustment (Lisp_Object marker, ptrdiff_t adjustment)
714bced9 181{
4b4deea2 182 if (EQ (BVAR (current_buffer, undo_list), Qt))
714bced9
RS
183 return;
184
185 /* Allocate a cons cell to be the undo boundary after this command. */
186 if (NILP (pending_boundary))
187 pending_boundary = Fcons (Qnil, Qnil);
188
4591d6cb 189 if (current_buffer != last_undo_buffer)
714bced9 190 Fundo_boundary ();
4591d6cb 191 last_undo_buffer = current_buffer;
714bced9 192
4b4deea2 193 BVAR (current_buffer, undo_list)
714bced9 194 = Fcons (Fcons (marker, make_number (adjustment)),
4b4deea2 195 BVAR (current_buffer, undo_list));
714bced9
RS
196}
197
c6953be1
JB
198/* Record that a replacement is about to take place,
199 for LENGTH characters at location BEG.
e928d437 200 The replacement must not change the number of characters. */
c6953be1 201
ff1aa840 202void
d311d28c 203record_change (ptrdiff_t beg, ptrdiff_t length)
c6953be1 204{
e928d437 205 record_delete (beg, make_buffer_string (beg, beg + length, 1));
c6953be1
JB
206 record_insert (beg, length);
207}
208\f
209/* Record that an unmodified buffer is about to be changed.
210 Record the file modification date so that when undoing this entry
211 we can tell whether it is obsolete because the file was saved again. */
212
90dd3e4f 213void
971de7fb 214record_first_change (void)
c6953be1 215{
ad9cdce4 216 struct buffer *base_buffer = current_buffer;
0736cafe 217
4b4deea2 218 if (EQ (BVAR (current_buffer, undo_list), Qt))
0736cafe
RS
219 return;
220
4591d6cb 221 if (current_buffer != last_undo_buffer)
0736cafe 222 Fundo_boundary ();
4591d6cb 223 last_undo_buffer = current_buffer;
0736cafe 224
ad9cdce4
RS
225 if (base_buffer->base_buffer)
226 base_buffer = base_buffer->base_buffer;
227
be44ca6c
PE
228 BVAR (current_buffer, undo_list) =
229 Fcons (Fcons (Qt, INTEGER_TO_CONS (base_buffer->modtime)),
230 BVAR (current_buffer, undo_list));
c6953be1
JB
231}
232
da9319d5
RS
233/* Record a change in property PROP (whose old value was VAL)
234 for LENGTH characters starting at position BEG in BUFFER. */
235
90dd3e4f 236void
d311d28c 237record_property_change (ptrdiff_t beg, ptrdiff_t length,
c8a66ab8
EZ
238 Lisp_Object prop, Lisp_Object value,
239 Lisp_Object buffer)
da9319d5
RS
240{
241 Lisp_Object lbeg, lend, entry;
4591d6cb 242 struct buffer *obuf = current_buffer, *buf = XBUFFER (buffer);
da9319d5
RS
243 int boundary = 0;
244
4b4deea2 245 if (EQ (BVAR (buf, undo_list), Qt))
bdbe6f28
RS
246 return;
247
c58632fc
RS
248 /* Allocate a cons cell to be the undo boundary after this command. */
249 if (NILP (pending_boundary))
250 pending_boundary = Fcons (Qnil, Qnil);
251
4591d6cb 252 if (buf != last_undo_buffer)
da9319d5 253 boundary = 1;
4591d6cb 254 last_undo_buffer = buf;
da9319d5 255
da9319d5 256 /* Switch temporarily to the buffer that was changed. */
4591d6cb 257 current_buffer = buf;
da9319d5
RS
258
259 if (boundary)
260 Fundo_boundary ();
261
ad9cdce4 262 if (MODIFF <= SAVE_MODIFF)
da9319d5
RS
263 record_first_change ();
264
552bdbcf
KH
265 XSETINT (lbeg, beg);
266 XSETINT (lend, beg + length);
da9319d5 267 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend))));
4b4deea2 268 BVAR (current_buffer, undo_list) = Fcons (entry, BVAR (current_buffer, undo_list));
da9319d5
RS
269
270 current_buffer = obuf;
271}
272
a7ca3326 273DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0,
8c1a1077
PJ
274 doc: /* Mark a boundary between units of undo.
275An undo command will stop at this point,
276but another undo command will undo to the previous boundary. */)
5842a27b 277 (void)
c6953be1
JB
278{
279 Lisp_Object tem;
4b4deea2 280 if (EQ (BVAR (current_buffer, undo_list), Qt))
c6953be1 281 return Qnil;
4b4deea2 282 tem = Fcar (BVAR (current_buffer, undo_list));
265a9e55 283 if (!NILP (tem))
c58632fc
RS
284 {
285 /* One way or another, cons nil onto the front of the undo list. */
286 if (!NILP (pending_boundary))
287 {
288 /* If we have preallocated the cons cell to use here,
289 use that one. */
4b4deea2
TT
290 XSETCDR (pending_boundary, BVAR (current_buffer, undo_list));
291 BVAR (current_buffer, undo_list) = pending_boundary;
c58632fc
RS
292 pending_boundary = Qnil;
293 }
294 else
4b4deea2 295 BVAR (current_buffer, undo_list) = Fcons (Qnil, BVAR (current_buffer, undo_list));
c58632fc 296 }
4591d6cb
SM
297 last_boundary_position = PT;
298 last_boundary_buffer = current_buffer;
c6953be1
JB
299 return Qnil;
300}
301
302/* At garbage collection time, make an undo list shorter at the end,
137e23ea
RS
303 returning the truncated list. How this is done depends on the
304 variables undo-limit, undo-strong-limit and undo-outer-limit.
305 In some cases this works by calling undo-outer-limit-function. */
306
307void
971de7fb 308truncate_undo_list (struct buffer *b)
c6953be1 309{
137e23ea 310 Lisp_Object list;
c6953be1 311 Lisp_Object prev, next, last_boundary;
d311d28c 312 EMACS_INT size_so_far = 0;
c6953be1 313
137e23ea
RS
314 /* Make sure that calling undo-outer-limit-function
315 won't cause another GC. */
d311d28c 316 ptrdiff_t count = inhibit_garbage_collection ();
137e23ea
RS
317
318 /* Make the buffer current to get its local values of variables such
319 as undo_limit. Also so that Vundo_outer_limit_function can
320 tell which buffer to operate on. */
321 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
322 set_buffer_internal (b);
323
4b4deea2 324 list = BVAR (b, undo_list);
137e23ea 325
c6953be1
JB
326 prev = Qnil;
327 next = list;
328 last_boundary = Qnil;
329
137e23ea 330 /* If the first element is an undo boundary, skip past it. */
c1d497be 331 if (CONSP (next) && NILP (XCAR (next)))
c6953be1
JB
332 {
333 /* Add in the space occupied by this element and its chain link. */
334 size_so_far += sizeof (struct Lisp_Cons);
335
336 /* Advance to next element. */
337 prev = next;
c1d497be 338 next = XCDR (next);
c6953be1 339 }
e3d5ca1e 340
137e23ea
RS
341 /* Always preserve at least the most recent undo record
342 unless it is really horribly big.
343
344 Skip, skip, skip the undo, skip, skip, skip the undo,
345 Skip, skip, skip the undo, skip to the undo bound'ry. */
346
c1d497be 347 while (CONSP (next) && ! NILP (XCAR (next)))
c6953be1
JB
348 {
349 Lisp_Object elt;
c1d497be 350 elt = XCAR (next);
c6953be1
JB
351
352 /* Add in the space occupied by this element and its chain link. */
353 size_so_far += sizeof (struct Lisp_Cons);
38c0d37c 354 if (CONSP (elt))
c6953be1
JB
355 {
356 size_so_far += sizeof (struct Lisp_Cons);
c1d497be 357 if (STRINGP (XCAR (elt)))
c6953be1 358 size_so_far += (sizeof (struct Lisp_String) - 1
d5db4077 359 + SCHARS (XCAR (elt)));
c6953be1
JB
360 }
361
362 /* Advance to next element. */
363 prev = next;
c1d497be 364 next = XCDR (next);
c6953be1 365 }
e3d5ca1e 366
137e23ea
RS
367 /* If by the first boundary we have already passed undo_outer_limit,
368 we're heading for memory full, so offer to clear out the list. */
81c1cf71
RS
369 if (INTEGERP (Vundo_outer_limit)
370 && size_so_far > XINT (Vundo_outer_limit)
137e23ea
RS
371 && !NILP (Vundo_outer_limit_function))
372 {
4591d6cb
SM
373 Lisp_Object tem;
374 struct buffer *temp = last_undo_buffer;
137e23ea
RS
375
376 /* Normally the function this calls is undo-outer-limit-truncate. */
88fde92a
KR
377 tem = call1 (Vundo_outer_limit_function, make_number (size_so_far));
378 if (! NILP (tem))
137e23ea
RS
379 {
380 /* The function is responsible for making
381 any desired changes in buffer-undo-list. */
382 unbind_to (count, Qnil);
383 return;
384 }
385 /* That function probably used the minibuffer, and if so, that
386 changed last_undo_buffer. Change it back so that we don't
387 force next change to make an undo boundary here. */
388 last_undo_buffer = temp;
389 }
390
38c0d37c 391 if (CONSP (next))
c6953be1
JB
392 last_boundary = prev;
393
137e23ea 394 /* Keep additional undo data, if it fits in the limits. */
38c0d37c 395 while (CONSP (next))
c6953be1
JB
396 {
397 Lisp_Object elt;
c1d497be 398 elt = XCAR (next);
c6953be1
JB
399
400 /* When we get to a boundary, decide whether to truncate
137e23ea 401 either before or after it. The lower threshold, undo_limit,
c6953be1 402 tells us to truncate after it. If its size pushes past
137e23ea 403 the higher threshold undo_strong_limit, we truncate before it. */
265a9e55 404 if (NILP (elt))
c6953be1 405 {
137e23ea 406 if (size_so_far > undo_strong_limit)
c6953be1
JB
407 break;
408 last_boundary = prev;
137e23ea 409 if (size_so_far > undo_limit)
c6953be1
JB
410 break;
411 }
412
413 /* Add in the space occupied by this element and its chain link. */
414 size_so_far += sizeof (struct Lisp_Cons);
38c0d37c 415 if (CONSP (elt))
c6953be1
JB
416 {
417 size_so_far += sizeof (struct Lisp_Cons);
c1d497be 418 if (STRINGP (XCAR (elt)))
c6953be1 419 size_so_far += (sizeof (struct Lisp_String) - 1
d5db4077 420 + SCHARS (XCAR (elt)));
c6953be1
JB
421 }
422
423 /* Advance to next element. */
424 prev = next;
c1d497be 425 next = XCDR (next);
c6953be1
JB
426 }
427
428 /* If we scanned the whole list, it is short enough; don't change it. */
265a9e55 429 if (NILP (next))
137e23ea 430 ;
c6953be1 431 /* Truncate at the boundary where we decided to truncate. */
137e23ea
RS
432 else if (!NILP (last_boundary))
433 XSETCDR (last_boundary, Qnil);
434 /* There's nothing we decided to keep, so clear it out. */
c6953be1 435 else
4b4deea2 436 BVAR (b, undo_list) = Qnil;
137e23ea
RS
437
438 unbind_to (count, Qnil);
c6953be1 439}
71873e2b
SM
440
441static void user_error (const char*) NO_RETURN;
442static void user_error (const char *msg)
443{
444 xsignal1 (Quser_error, build_string (msg));
445}
446
c6953be1
JB
447\f
448DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0,
8c1a1077
PJ
449 doc: /* Undo N records from the front of the list LIST.
450Return what remains of the list. */)
5842a27b 451 (Lisp_Object n, Lisp_Object list)
c6953be1 452{
de65837b
KH
453 struct gcpro gcpro1, gcpro2;
454 Lisp_Object next;
d311d28c
PE
455 ptrdiff_t count = SPECPDL_INDEX ();
456 register EMACS_INT arg;
4ac03187
KS
457 Lisp_Object oldlist;
458 int did_apply = 0;
177c0ea7 459
c6953be1
JB
460#if 0 /* This is a good feature, but would make undo-start
461 unable to do what is expected. */
462 Lisp_Object tem;
463
464 /* If the head of the list is a boundary, it is the boundary
465 preceding this command. Get rid of it and don't count it. */
466 tem = Fcar (list);
265a9e55 467 if (NILP (tem))
c6953be1
JB
468 list = Fcdr (list);
469#endif
470
b7826503 471 CHECK_NUMBER (n);
de65837b
KH
472 arg = XINT (n);
473 next = Qnil;
474 GCPRO2 (next, list);
4ac03187
KS
475 /* I don't think we need to gcpro oldlist, as we use it only
476 to check for EQ. ++kfs */
de65837b 477
38d56be3
GM
478 /* In a writable buffer, enable undoing read-only text that is so
479 because of text properties. */
4b4deea2 480 if (NILP (BVAR (current_buffer, read_only)))
f87a68b3
RS
481 specbind (Qinhibit_read_only, Qt);
482
8c757fd7
GM
483 /* Don't let `intangible' properties interfere with undo. */
484 specbind (Qinhibit_point_motion_hooks, Qt);
485
4b4deea2 486 oldlist = BVAR (current_buffer, undo_list);
4ac03187 487
c6953be1
JB
488 while (arg > 0)
489 {
c3b09bbf 490 while (CONSP (list))
c6953be1 491 {
c3b09bbf
SM
492 next = XCAR (list);
493 list = XCDR (list);
350bce56 494 /* Exit inner loop at undo boundary. */
265a9e55 495 if (NILP (next))
c6953be1 496 break;
350bce56 497 /* Handle an integer by setting point to that value. */
38c0d37c 498 if (INTEGERP (next))
350bce56 499 SET_PT (clip_to_bounds (BEGV, XINT (next), ZV));
38c0d37c 500 else if (CONSP (next))
c6953be1 501 {
350bce56
RS
502 Lisp_Object car, cdr;
503
c3b09bbf
SM
504 car = XCAR (next);
505 cdr = XCDR (next);
350bce56 506 if (EQ (car, Qt))
c6953be1 507 {
350bce56 508 /* Element (t high . low) records previous modtime. */
ad9cdce4 509 struct buffer *base_buffer = current_buffer;
be44ca6c
PE
510 time_t mod_time;
511 CONS_TO_INTEGER (cdr, time_t, mod_time);
ad9cdce4
RS
512
513 if (current_buffer->base_buffer)
514 base_buffer = current_buffer->base_buffer;
515
350bce56
RS
516 /* If this records an obsolete save
517 (not matching the actual disk file)
518 then don't mark unmodified. */
ad9cdce4 519 if (mod_time != base_buffer->modtime)
103dcb38 520 continue;
e6dd6080 521#ifdef CLASH_DETECTION
350bce56 522 Funlock_buffer ();
e6dd6080 523#endif /* CLASH_DETECTION */
350bce56 524 Fset_buffer_modified_p (Qnil);
c6953be1 525 }
d8552b2f 526 else if (EQ (car, Qnil))
da9319d5 527 {
6887bce5 528 /* Element (nil PROP VAL BEG . END) is property change. */
da9319d5
RS
529 Lisp_Object beg, end, prop, val;
530
531 prop = Fcar (cdr);
532 cdr = Fcdr (cdr);
533 val = Fcar (cdr);
534 cdr = Fcdr (cdr);
535 beg = Fcar (cdr);
536 end = Fcdr (cdr);
537
9e568684 538 if (XINT (beg) < BEGV || XINT (end) > ZV)
71873e2b 539 user_error ("Changes to be undone are outside visible portion of buffer");
da9319d5
RS
540 Fput_text_property (beg, end, prop, val, Qnil);
541 }
38c0d37c 542 else if (INTEGERP (car) && INTEGERP (cdr))
c6953be1 543 {
350bce56 544 /* Element (BEG . END) means range was inserted. */
350bce56
RS
545
546 if (XINT (car) < BEGV
547 || XINT (cdr) > ZV)
71873e2b 548 user_error ("Changes to be undone are outside visible portion of buffer");
f28f04cc
RS
549 /* Set point first thing, so that undoing this undo
550 does not send point back to where it is now. */
350bce56 551 Fgoto_char (car);
f28f04cc 552 Fdelete_region (car, cdr);
350bce56 553 }
49be18c9 554 else if (EQ (car, Qapply))
6887bce5 555 {
3419757d 556 /* Element (apply FUN . ARGS) means call FUN to undo. */
a7a39468
KS
557 struct buffer *save_buffer = current_buffer;
558
49be18c9 559 car = Fcar (cdr);
3419757d 560 cdr = Fcdr (cdr);
49be18c9
KS
561 if (INTEGERP (car))
562 {
3419757d
SM
563 /* Long format: (apply DELTA START END FUN . ARGS). */
564 Lisp_Object delta = car;
565 Lisp_Object start = Fcar (cdr);
566 Lisp_Object end = Fcar (Fcdr (cdr));
567 Lisp_Object start_mark = Fcopy_marker (start, Qnil);
568 Lisp_Object end_mark = Fcopy_marker (end, Qt);
569
570 cdr = Fcdr (Fcdr (cdr));
571 apply1 (Fcar (cdr), Fcdr (cdr));
572
573 /* Check that the function did what the entry said it
574 would do. */
575 if (!EQ (start, Fmarker_position (start_mark))
576 || (XINT (delta) + XINT (end)
577 != marker_position (end_mark)))
578 error ("Changes to be undone by function different than announced");
579 Fset_marker (start_mark, Qnil, Qnil);
580 Fset_marker (end_mark, Qnil, Qnil);
49be18c9 581 }
3419757d
SM
582 else
583 apply1 (car, cdr);
a7a39468
KS
584
585 if (save_buffer != current_buffer)
586 error ("Undo function switched buffer");
4ac03187 587 did_apply = 1;
6887bce5 588 }
38c0d37c 589 else if (STRINGP (car) && INTEGERP (cdr))
350bce56
RS
590 {
591 /* Element (STRING . POS) means STRING was deleted. */
592 Lisp_Object membuf;
c8a66ab8 593 EMACS_INT pos = XINT (cdr);
350bce56
RS
594
595 membuf = car;
596 if (pos < 0)
597 {
598 if (-pos < BEGV || -pos > ZV)
71873e2b 599 user_error ("Changes to be undone are outside visible portion of buffer");
350bce56
RS
600 SET_PT (-pos);
601 Finsert (1, &membuf);
602 }
603 else
604 {
605 if (pos < BEGV || pos > ZV)
71873e2b 606 user_error ("Changes to be undone are outside visible portion of buffer");
350bce56
RS
607 SET_PT (pos);
608
b2adc409
RS
609 /* Now that we record marker adjustments
610 (caused by deletion) for undo,
611 we should always insert after markers,
612 so that undoing the marker adjustments
613 put the markers back in the right place. */
614 Finsert (1, &membuf);
350bce56
RS
615 SET_PT (pos);
616 }
c6953be1 617 }
714bced9
RS
618 else if (MARKERP (car) && INTEGERP (cdr))
619 {
620 /* (MARKER . INTEGER) means a marker MARKER
621 was adjusted by INTEGER. */
622 if (XMARKER (car)->buffer)
623 Fset_marker (car,
624 make_number (marker_position (car) - XINT (cdr)),
625 Fmarker_buffer (car));
626 }
c6953be1
JB
627 }
628 }
629 arg--;
630 }
631
4ac03187
KS
632
633 /* Make sure an apply entry produces at least one undo entry,
634 so the test in `undo' for continuing an undo series
635 will work right. */
636 if (did_apply
4b4deea2
TT
637 && EQ (oldlist, BVAR (current_buffer, undo_list)))
638 BVAR (current_buffer, undo_list)
639 = Fcons (list3 (Qapply, Qcdr, Qnil), BVAR (current_buffer, undo_list));
4ac03187 640
de65837b 641 UNGCPRO;
f87a68b3 642 return unbind_to (count, list);
c6953be1 643}
6887bce5 644\f
dfcf069d 645void
971de7fb 646syms_of_undo (void)
c6953be1 647{
cd3520a4
JB
648 DEFSYM (Qinhibit_read_only, "inhibit-read-only");
649 DEFSYM (Qapply, "apply");
49be18c9 650
c58632fc
RS
651 pending_boundary = Qnil;
652 staticpro (&pending_boundary);
653
4591d6cb
SM
654 last_undo_buffer = NULL;
655 last_boundary_buffer = NULL;
656
c6953be1
JB
657 defsubr (&Sprimitive_undo);
658 defsubr (&Sundo_boundary);
137e23ea 659
29208e82 660 DEFVAR_INT ("undo-limit", undo_limit,
137e23ea
RS
661 doc: /* Keep no more undo information once it exceeds this size.
662This limit is applied when garbage collection happens.
663When a previous command increases the total undo list size past this
664value, the earlier commands that came before it are forgotten.
665
666The size is counted as the number of bytes occupied,
667which includes both saved text and other data. */);
2159bd06 668 undo_limit = 80000;
137e23ea 669
29208e82 670 DEFVAR_INT ("undo-strong-limit", undo_strong_limit,
137e23ea
RS
671 doc: /* Don't keep more than this much size of undo information.
672This limit is applied when garbage collection happens.
673When a previous command increases the total undo list size past this
674value, that command and the earlier commands that came before it are forgotten.
675However, the most recent buffer-modifying command's undo info
676is never discarded for this reason.
677
678The size is counted as the number of bytes occupied,
679which includes both saved text and other data. */);
2159bd06 680 undo_strong_limit = 120000;
137e23ea 681
29208e82 682 DEFVAR_LISP ("undo-outer-limit", Vundo_outer_limit,
137e23ea
RS
683 doc: /* Outer limit on size of undo information for one command.
684At garbage collection time, if the current command has produced
62d776fd
LT
685more than this much undo information, it discards the info and displays
686a warning. This is a last-ditch limit to prevent memory overflow.
137e23ea 687
62d776fd
LT
688The size is counted as the number of bytes occupied, which includes
689both saved text and other data. A value of nil means no limit. In
690this case, accumulating one huge undo entry could make Emacs crash as
691a result of memory overflow.
137e23ea
RS
692
693In fact, this calls the function which is the value of
694`undo-outer-limit-function' with one argument, the size.
695The text above describes the behavior of the function
696that variable usually specifies. */);
2159bd06 697 Vundo_outer_limit = make_number (12000000);
137e23ea 698
29208e82 699 DEFVAR_LISP ("undo-outer-limit-function", Vundo_outer_limit_function,
137e23ea
RS
700 doc: /* Function to call when an undo list exceeds `undo-outer-limit'.
701This function is called with one argument, the current undo list size
702for the most recent command (since the last undo boundary).
703If the function returns t, that means truncation has been fully handled.
704If it returns nil, the other forms of truncation are done.
705
706Garbage collection is inhibited around the call to this function,
707so it must make sure not to do a lot of consing. */);
708 Vundo_outer_limit_function = Qnil;
8abe0f97 709
29208e82 710 DEFVAR_BOOL ("undo-inhibit-record-point", undo_inhibit_record_point,
8abe0f97
MR
711 doc: /* Non-nil means do not record `point' in `buffer-undo-list'. */);
712 undo_inhibit_record_point = 0;
c6953be1 713}