Remove intern calls and XXX comments from Fx_export_frames
[emacs.git] / src / undo.c
blob009ebc0f959b5767f675c45d879794c1150ad5f5
1 /* undo handling for GNU Emacs.
2 Copyright (C) 1990, 1993-1994, 2000-2015 Free Software Foundation,
3 Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #include "lisp.h"
24 #include "buffer.h"
26 /* Position of point last time we inserted a boundary. */
27 static struct buffer *last_boundary_buffer;
28 static ptrdiff_t last_boundary_position;
30 /* The first time a command records something for undo.
31 it also allocates the undo-boundary object
32 which will be added to the list at the end of the command.
33 This ensures we can't run out of space while trying to make
34 an undo-boundary. */
35 static Lisp_Object pending_boundary;
37 void
38 run_undoable_change ()
40 call0 (Qundo_auto__undoable_change);
43 /* Record point as it was at beginning of this command (if necessary)
44 and prepare the undo info for recording a change.
45 PT is the position of point that will naturally occur as a result of the
46 undo record that will be added just after this command terminates. */
48 static void
49 record_point (ptrdiff_t pt)
51 bool at_boundary;
53 /* Don't record position of pt when undo_inhibit_record_point holds. */
54 if (undo_inhibit_record_point)
55 return;
57 /* Allocate a cons cell to be the undo boundary after this command. */
58 if (NILP (pending_boundary))
59 pending_boundary = Fcons (Qnil, Qnil);
61 run_undoable_change ();
63 at_boundary = ! CONSP (BVAR (current_buffer, undo_list))
64 || NILP (XCAR (BVAR (current_buffer, undo_list)));
66 if (MODIFF <= SAVE_MODIFF)
67 record_first_change ();
69 /* If we are just after an undo boundary, and
70 point wasn't at start of deleted range, record where it was. */
71 if (at_boundary
72 && current_buffer == last_boundary_buffer
73 && last_boundary_position != pt)
74 bset_undo_list (current_buffer,
75 Fcons (make_number (last_boundary_position),
76 BVAR (current_buffer, undo_list)));
79 /* Record an insertion that just happened or is about to happen,
80 for LENGTH characters at position BEG.
81 (It is possible to record an insertion before or after the fact
82 because we don't need to record the contents.) */
84 void
85 record_insert (ptrdiff_t beg, ptrdiff_t length)
87 Lisp_Object lbeg, lend;
89 if (EQ (BVAR (current_buffer, undo_list), Qt))
90 return;
92 record_point (beg);
94 /* If this is following another insertion and consecutive with it
95 in the buffer, combine the two. */
96 if (CONSP (BVAR (current_buffer, undo_list)))
98 Lisp_Object elt;
99 elt = XCAR (BVAR (current_buffer, undo_list));
100 if (CONSP (elt)
101 && INTEGERP (XCAR (elt))
102 && INTEGERP (XCDR (elt))
103 && XINT (XCDR (elt)) == beg)
105 XSETCDR (elt, make_number (beg + length));
106 return;
110 XSETFASTINT (lbeg, beg);
111 XSETINT (lend, beg + length);
112 bset_undo_list (current_buffer,
113 Fcons (Fcons (lbeg, lend), BVAR (current_buffer, undo_list)));
116 /* Record the fact that markers in the region of FROM, TO are about to
117 be adjusted. This is done only when a marker points within text
118 being deleted, because that's the only case where an automatic
119 marker adjustment won't be inverted automatically by undoing the
120 buffer modification. */
122 static void
123 record_marker_adjustments (ptrdiff_t from, ptrdiff_t to)
125 Lisp_Object marker;
126 register struct Lisp_Marker *m;
127 register ptrdiff_t charpos, adjustment;
129 /* Allocate a cons cell to be the undo boundary after this command. */
130 if (NILP (pending_boundary))
131 pending_boundary = Fcons (Qnil, Qnil);
133 run_undoable_change ();
135 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
137 charpos = m->charpos;
138 eassert (charpos <= Z);
140 if (from <= charpos && charpos <= to)
142 /* insertion_type nil markers will end up at the beginning of
143 the re-inserted text after undoing a deletion, and must be
144 adjusted to move them to the correct place.
146 insertion_type t markers will automatically move forward
147 upon re-inserting the deleted text, so we have to arrange
148 for them to move backward to the correct position. */
149 adjustment = (m->insertion_type ? to : from) - charpos;
151 if (adjustment)
153 XSETMISC (marker, m);
154 bset_undo_list
155 (current_buffer,
156 Fcons (Fcons (marker, make_number (adjustment)),
157 BVAR (current_buffer, undo_list)));
163 /* Record that a deletion is about to take place, of the characters in
164 STRING, at location BEG. Optionally record adjustments for markers
165 in the region STRING occupies in the current buffer. */
167 void
168 record_delete (ptrdiff_t beg, Lisp_Object string, bool record_markers)
170 Lisp_Object sbeg;
172 if (EQ (BVAR (current_buffer, undo_list), Qt))
173 return;
175 if (PT == beg + SCHARS (string))
177 XSETINT (sbeg, -beg);
178 record_point (PT);
180 else
182 XSETFASTINT (sbeg, beg);
183 record_point (beg);
186 /* primitive-undo assumes marker adjustments are recorded
187 immediately before the deletion is recorded. See bug 16818
188 discussion. */
189 if (record_markers)
190 record_marker_adjustments (beg, beg + SCHARS (string));
192 bset_undo_list
193 (current_buffer,
194 Fcons (Fcons (string, sbeg), BVAR (current_buffer, undo_list)));
197 /* Record that a replacement is about to take place,
198 for LENGTH characters at location BEG.
199 The replacement must not change the number of characters. */
201 void
202 record_change (ptrdiff_t beg, ptrdiff_t length)
204 record_delete (beg, make_buffer_string (beg, beg + length, true), false);
205 record_insert (beg, length);
208 /* Record that an unmodified buffer is about to be changed.
209 Record the file modification date so that when undoing this entry
210 we can tell whether it is obsolete because the file was saved again. */
212 void
213 record_first_change (void)
215 struct buffer *base_buffer = current_buffer;
217 if (EQ (BVAR (current_buffer, undo_list), Qt))
218 return;
220 if (base_buffer->base_buffer)
221 base_buffer = base_buffer->base_buffer;
223 bset_undo_list (current_buffer,
224 Fcons (Fcons (Qt, Fvisited_file_modtime ()),
225 BVAR (current_buffer, undo_list)));
228 /* Record a change in property PROP (whose old value was VAL)
229 for LENGTH characters starting at position BEG in BUFFER. */
231 void
232 record_property_change (ptrdiff_t beg, ptrdiff_t length,
233 Lisp_Object prop, Lisp_Object value,
234 Lisp_Object buffer)
236 Lisp_Object lbeg, lend, entry;
237 struct buffer *obuf = current_buffer, *buf = XBUFFER (buffer);
238 bool boundary = false;
240 if (EQ (BVAR (buf, undo_list), Qt))
241 return;
243 /* Allocate a cons cell to be the undo boundary after this command. */
244 if (NILP (pending_boundary))
245 pending_boundary = Fcons (Qnil, Qnil);
247 /* Switch temporarily to the buffer that was changed. */
248 set_buffer_internal (buf);
250 run_undoable_change ();
252 if (MODIFF <= SAVE_MODIFF)
253 record_first_change ();
255 XSETINT (lbeg, beg);
256 XSETINT (lend, beg + length);
257 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend))));
258 bset_undo_list (current_buffer,
259 Fcons (entry, BVAR (current_buffer, undo_list)));
261 /* Reset the buffer */
262 set_buffer_internal (obuf);
265 DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0,
266 doc: /* Mark a boundary between units of undo.
267 An undo command will stop at this point,
268 but another undo command will undo to the previous boundary. */)
269 (void)
271 Lisp_Object tem;
272 if (EQ (BVAR (current_buffer, undo_list), Qt))
273 return Qnil;
274 tem = Fcar (BVAR (current_buffer, undo_list));
275 if (!NILP (tem))
277 /* One way or another, cons nil onto the front of the undo list. */
278 if (!NILP (pending_boundary))
280 /* If we have preallocated the cons cell to use here,
281 use that one. */
282 XSETCDR (pending_boundary, BVAR (current_buffer, undo_list));
283 bset_undo_list (current_buffer, pending_boundary);
284 pending_boundary = Qnil;
286 else
287 bset_undo_list (current_buffer,
288 Fcons (Qnil, BVAR (current_buffer, undo_list)));
290 last_boundary_position = PT;
291 last_boundary_buffer = current_buffer;
293 Fset (Qundo_auto__last_boundary_cause, Qexplicit);
294 return Qnil;
297 /* At garbage collection time, make an undo list shorter at the end,
298 returning the truncated list. How this is done depends on the
299 variables undo-limit, undo-strong-limit and undo-outer-limit.
300 In some cases this works by calling undo-outer-limit-function. */
302 void
303 truncate_undo_list (struct buffer *b)
305 Lisp_Object list;
306 Lisp_Object prev, next, last_boundary;
307 EMACS_INT size_so_far = 0;
309 /* Make sure that calling undo-outer-limit-function
310 won't cause another GC. */
311 ptrdiff_t count = inhibit_garbage_collection ();
313 /* Make the buffer current to get its local values of variables such
314 as undo_limit. Also so that Vundo_outer_limit_function can
315 tell which buffer to operate on. */
316 record_unwind_current_buffer ();
317 set_buffer_internal (b);
319 list = BVAR (b, undo_list);
321 prev = Qnil;
322 next = list;
323 last_boundary = Qnil;
325 /* If the first element is an undo boundary, skip past it. */
326 if (CONSP (next) && NILP (XCAR (next)))
328 /* Add in the space occupied by this element and its chain link. */
329 size_so_far += sizeof (struct Lisp_Cons);
331 /* Advance to next element. */
332 prev = next;
333 next = XCDR (next);
336 /* Always preserve at least the most recent undo record
337 unless it is really horribly big.
339 Skip, skip, skip the undo, skip, skip, skip the undo,
340 Skip, skip, skip the undo, skip to the undo bound'ry. */
342 while (CONSP (next) && ! NILP (XCAR (next)))
344 Lisp_Object elt;
345 elt = XCAR (next);
347 /* Add in the space occupied by this element and its chain link. */
348 size_so_far += sizeof (struct Lisp_Cons);
349 if (CONSP (elt))
351 size_so_far += sizeof (struct Lisp_Cons);
352 if (STRINGP (XCAR (elt)))
353 size_so_far += (sizeof (struct Lisp_String) - 1
354 + SCHARS (XCAR (elt)));
357 /* Advance to next element. */
358 prev = next;
359 next = XCDR (next);
362 /* If by the first boundary we have already passed undo_outer_limit,
363 we're heading for memory full, so offer to clear out the list. */
364 if (INTEGERP (Vundo_outer_limit)
365 && size_so_far > XINT (Vundo_outer_limit)
366 && !NILP (Vundo_outer_limit_function))
368 Lisp_Object tem;
370 /* Normally the function this calls is undo-outer-limit-truncate. */
371 tem = call1 (Vundo_outer_limit_function, make_number (size_so_far));
372 if (! NILP (tem))
374 /* The function is responsible for making
375 any desired changes in buffer-undo-list. */
376 unbind_to (count, Qnil);
377 return;
381 if (CONSP (next))
382 last_boundary = prev;
384 /* Keep additional undo data, if it fits in the limits. */
385 while (CONSP (next))
387 Lisp_Object elt;
388 elt = XCAR (next);
390 /* When we get to a boundary, decide whether to truncate
391 either before or after it. The lower threshold, undo_limit,
392 tells us to truncate after it. If its size pushes past
393 the higher threshold undo_strong_limit, we truncate before it. */
394 if (NILP (elt))
396 if (size_so_far > undo_strong_limit)
397 break;
398 last_boundary = prev;
399 if (size_so_far > undo_limit)
400 break;
403 /* Add in the space occupied by this element and its chain link. */
404 size_so_far += sizeof (struct Lisp_Cons);
405 if (CONSP (elt))
407 size_so_far += sizeof (struct Lisp_Cons);
408 if (STRINGP (XCAR (elt)))
409 size_so_far += (sizeof (struct Lisp_String) - 1
410 + SCHARS (XCAR (elt)));
413 /* Advance to next element. */
414 prev = next;
415 next = XCDR (next);
418 /* If we scanned the whole list, it is short enough; don't change it. */
419 if (NILP (next))
421 /* Truncate at the boundary where we decided to truncate. */
422 else if (!NILP (last_boundary))
423 XSETCDR (last_boundary, Qnil);
424 /* There's nothing we decided to keep, so clear it out. */
425 else
426 bset_undo_list (b, Qnil);
428 unbind_to (count, Qnil);
432 void
433 syms_of_undo (void)
435 DEFSYM (Qinhibit_read_only, "inhibit-read-only");
436 DEFSYM (Qundo_auto__undoable_change, "undo-auto--undoable-change");
437 DEFSYM (Qundo_auto__last_boundary_cause, "undo-auto--last-boundary-cause");
438 DEFSYM (Qexplicit, "explicit");
440 /* Marker for function call undo list elements. */
441 DEFSYM (Qapply, "apply");
443 pending_boundary = Qnil;
444 staticpro (&pending_boundary);
446 last_boundary_buffer = NULL;
448 defsubr (&Sundo_boundary);
450 DEFVAR_INT ("undo-limit", undo_limit,
451 doc: /* Keep no more undo information once it exceeds this size.
452 This limit is applied when garbage collection happens.
453 When a previous command increases the total undo list size past this
454 value, the earlier commands that came before it are forgotten.
456 The size is counted as the number of bytes occupied,
457 which includes both saved text and other data. */);
458 undo_limit = 80000;
460 DEFVAR_INT ("undo-strong-limit", undo_strong_limit,
461 doc: /* Don't keep more than this much size of undo information.
462 This limit is applied when garbage collection happens.
463 When a previous command increases the total undo list size past this
464 value, that command and the earlier commands that came before it are forgotten.
465 However, the most recent buffer-modifying command's undo info
466 is never discarded for this reason.
468 The size is counted as the number of bytes occupied,
469 which includes both saved text and other data. */);
470 undo_strong_limit = 120000;
472 DEFVAR_LISP ("undo-outer-limit", Vundo_outer_limit,
473 doc: /* Outer limit on size of undo information for one command.
474 At garbage collection time, if the current command has produced
475 more than this much undo information, it discards the info and displays
476 a warning. This is a last-ditch limit to prevent memory overflow.
478 The size is counted as the number of bytes occupied, which includes
479 both saved text and other data. A value of nil means no limit. In
480 this case, accumulating one huge undo entry could make Emacs crash as
481 a result of memory overflow.
483 In fact, this calls the function which is the value of
484 `undo-outer-limit-function' with one argument, the size.
485 The text above describes the behavior of the function
486 that variable usually specifies. */);
487 Vundo_outer_limit = make_number (12000000);
489 DEFVAR_LISP ("undo-outer-limit-function", Vundo_outer_limit_function,
490 doc: /* Function to call when an undo list exceeds `undo-outer-limit'.
491 This function is called with one argument, the current undo list size
492 for the most recent command (since the last undo boundary).
493 If the function returns t, that means truncation has been fully handled.
494 If it returns nil, the other forms of truncation are done.
496 Garbage collection is inhibited around the call to this function,
497 so it must make sure not to do a lot of consing. */);
498 Vundo_outer_limit_function = Qnil;
500 DEFVAR_BOOL ("undo-inhibit-record-point", undo_inhibit_record_point,
501 doc: /* Non-nil means do not record `point' in `buffer-undo-list'. */);
502 undo_inhibit_record_point = false;