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