]> code.delx.au - gnu-emacs/blob - src/undo.c
Include-file cleanup for src directory
[gnu-emacs] / src / undo.c
1 /* undo handling for GNU Emacs.
2 Copyright (C) 1990, 1993-1994, 2000-2015 Free Software Foundation,
3 Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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/>. */
19
20
21 #include <config.h>
22
23 #include "lisp.h"
24 #include "buffer.h"
25
26 /* Last buffer for which undo information was recorded. */
27 /* BEWARE: This is not traced by the GC, so never dereference it! */
28 static struct buffer *last_undo_buffer;
29
30 /* Position of point last time we inserted a boundary. */
31 static struct buffer *last_boundary_buffer;
32 static ptrdiff_t last_boundary_position;
33
34 /* The first time a command records something for undo.
35 it also allocates the undo-boundary object
36 which will be added to the list at the end of the command.
37 This ensures we can't run out of space while trying to make
38 an undo-boundary. */
39 static Lisp_Object pending_boundary;
40
41 /* Record point as it was at beginning of this command (if necessary)
42 and prepare the undo info for recording a change.
43 PT is the position of point that will naturally occur as a result of the
44 undo record that will be added just after this command terminates. */
45
46 static void
47 record_point (ptrdiff_t pt)
48 {
49 bool at_boundary;
50
51 /* Don't record position of pt when undo_inhibit_record_point holds. */
52 if (undo_inhibit_record_point)
53 return;
54
55 /* Allocate a cons cell to be the undo boundary after this command. */
56 if (NILP (pending_boundary))
57 pending_boundary = Fcons (Qnil, Qnil);
58
59 if ((current_buffer != last_undo_buffer)
60 /* Don't call Fundo_boundary for the first change. Otherwise we
61 risk overwriting last_boundary_position in Fundo_boundary with
62 PT of the current buffer and as a consequence not insert an
63 undo boundary because last_boundary_position will equal pt in
64 the test at the end of the present function (Bug#731). */
65 && (MODIFF > SAVE_MODIFF))
66 Fundo_boundary ();
67 last_undo_buffer = current_buffer;
68
69 at_boundary = ! CONSP (BVAR (current_buffer, undo_list))
70 || NILP (XCAR (BVAR (current_buffer, undo_list)));
71
72 if (MODIFF <= SAVE_MODIFF)
73 record_first_change ();
74
75 /* If we are just after an undo boundary, and
76 point wasn't at start of deleted range, record where it was. */
77 if (at_boundary
78 && current_buffer == last_boundary_buffer
79 && last_boundary_position != pt)
80 bset_undo_list (current_buffer,
81 Fcons (make_number (last_boundary_position),
82 BVAR (current_buffer, undo_list)));
83 }
84
85 /* Record an insertion that just happened or is about to happen,
86 for LENGTH characters at position BEG.
87 (It is possible to record an insertion before or after the fact
88 because we don't need to record the contents.) */
89
90 void
91 record_insert (ptrdiff_t beg, ptrdiff_t length)
92 {
93 Lisp_Object lbeg, lend;
94
95 if (EQ (BVAR (current_buffer, undo_list), Qt))
96 return;
97
98 record_point (beg);
99
100 /* If this is following another insertion and consecutive with it
101 in the buffer, combine the two. */
102 if (CONSP (BVAR (current_buffer, undo_list)))
103 {
104 Lisp_Object elt;
105 elt = XCAR (BVAR (current_buffer, undo_list));
106 if (CONSP (elt)
107 && INTEGERP (XCAR (elt))
108 && INTEGERP (XCDR (elt))
109 && XINT (XCDR (elt)) == beg)
110 {
111 XSETCDR (elt, make_number (beg + length));
112 return;
113 }
114 }
115
116 XSETFASTINT (lbeg, beg);
117 XSETINT (lend, beg + length);
118 bset_undo_list (current_buffer,
119 Fcons (Fcons (lbeg, lend), BVAR (current_buffer, undo_list)));
120 }
121
122 /* Record the fact that markers in the region of FROM, TO are about to
123 be adjusted. This is done only when a marker points within text
124 being deleted, because that's the only case where an automatic
125 marker adjustment won't be inverted automatically by undoing the
126 buffer modification. */
127
128 static void
129 record_marker_adjustments (ptrdiff_t from, ptrdiff_t to)
130 {
131 Lisp_Object marker;
132 register struct Lisp_Marker *m;
133 register ptrdiff_t charpos, adjustment;
134
135 /* Allocate a cons cell to be the undo boundary after this command. */
136 if (NILP (pending_boundary))
137 pending_boundary = Fcons (Qnil, Qnil);
138
139 if (current_buffer != last_undo_buffer)
140 Fundo_boundary ();
141 last_undo_buffer = current_buffer;
142
143 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
144 {
145 charpos = m->charpos;
146 eassert (charpos <= Z);
147
148 if (from <= charpos && charpos <= to)
149 {
150 /* insertion_type nil markers will end up at the beginning of
151 the re-inserted text after undoing a deletion, and must be
152 adjusted to move them to the correct place.
153
154 insertion_type t markers will automatically move forward
155 upon re-inserting the deleted text, so we have to arrange
156 for them to move backward to the correct position. */
157 adjustment = (m->insertion_type ? to : from) - charpos;
158
159 if (adjustment)
160 {
161 XSETMISC (marker, m);
162 bset_undo_list
163 (current_buffer,
164 Fcons (Fcons (marker, make_number (adjustment)),
165 BVAR (current_buffer, undo_list)));
166 }
167 }
168 }
169 }
170
171 /* Record that a deletion is about to take place, of the characters in
172 STRING, at location BEG. Optionally record adjustments for markers
173 in the region STRING occupies in the current buffer. */
174
175 void
176 record_delete (ptrdiff_t beg, Lisp_Object string, bool record_markers)
177 {
178 Lisp_Object sbeg;
179
180 if (EQ (BVAR (current_buffer, undo_list), Qt))
181 return;
182
183 if (PT == beg + SCHARS (string))
184 {
185 XSETINT (sbeg, -beg);
186 record_point (PT);
187 }
188 else
189 {
190 XSETFASTINT (sbeg, beg);
191 record_point (beg);
192 }
193
194 /* primitive-undo assumes marker adjustments are recorded
195 immediately before the deletion is recorded. See bug 16818
196 discussion. */
197 if (record_markers)
198 record_marker_adjustments (beg, beg + SCHARS (string));
199
200 bset_undo_list
201 (current_buffer,
202 Fcons (Fcons (string, sbeg), BVAR (current_buffer, undo_list)));
203 }
204
205 /* Record that a replacement is about to take place,
206 for LENGTH characters at location BEG.
207 The replacement must not change the number of characters. */
208
209 void
210 record_change (ptrdiff_t beg, ptrdiff_t length)
211 {
212 record_delete (beg, make_buffer_string (beg, beg + length, true), false);
213 record_insert (beg, length);
214 }
215 \f
216 /* Record that an unmodified buffer is about to be changed.
217 Record the file modification date so that when undoing this entry
218 we can tell whether it is obsolete because the file was saved again. */
219
220 void
221 record_first_change (void)
222 {
223 struct buffer *base_buffer = current_buffer;
224
225 if (EQ (BVAR (current_buffer, undo_list), Qt))
226 return;
227
228 if (current_buffer != last_undo_buffer)
229 Fundo_boundary ();
230 last_undo_buffer = current_buffer;
231
232 if (base_buffer->base_buffer)
233 base_buffer = base_buffer->base_buffer;
234
235 bset_undo_list (current_buffer,
236 Fcons (Fcons (Qt, Fvisited_file_modtime ()),
237 BVAR (current_buffer, undo_list)));
238 }
239
240 /* Record a change in property PROP (whose old value was VAL)
241 for LENGTH characters starting at position BEG in BUFFER. */
242
243 void
244 record_property_change (ptrdiff_t beg, ptrdiff_t length,
245 Lisp_Object prop, Lisp_Object value,
246 Lisp_Object buffer)
247 {
248 Lisp_Object lbeg, lend, entry;
249 struct buffer *obuf = current_buffer, *buf = XBUFFER (buffer);
250 bool boundary = false;
251
252 if (EQ (BVAR (buf, undo_list), Qt))
253 return;
254
255 /* Allocate a cons cell to be the undo boundary after this command. */
256 if (NILP (pending_boundary))
257 pending_boundary = Fcons (Qnil, Qnil);
258
259 if (buf != last_undo_buffer)
260 boundary = true;
261 last_undo_buffer = buf;
262
263 /* Switch temporarily to the buffer that was changed. */
264 current_buffer = buf;
265
266 if (boundary)
267 Fundo_boundary ();
268
269 if (MODIFF <= SAVE_MODIFF)
270 record_first_change ();
271
272 XSETINT (lbeg, beg);
273 XSETINT (lend, beg + length);
274 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend))));
275 bset_undo_list (current_buffer,
276 Fcons (entry, BVAR (current_buffer, undo_list)));
277
278 current_buffer = obuf;
279 }
280
281 DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0,
282 doc: /* Mark a boundary between units of undo.
283 An undo command will stop at this point,
284 but another undo command will undo to the previous boundary. */)
285 (void)
286 {
287 Lisp_Object tem;
288 if (EQ (BVAR (current_buffer, undo_list), Qt))
289 return Qnil;
290 tem = Fcar (BVAR (current_buffer, undo_list));
291 if (!NILP (tem))
292 {
293 /* One way or another, cons nil onto the front of the undo list. */
294 if (!NILP (pending_boundary))
295 {
296 /* If we have preallocated the cons cell to use here,
297 use that one. */
298 XSETCDR (pending_boundary, BVAR (current_buffer, undo_list));
299 bset_undo_list (current_buffer, pending_boundary);
300 pending_boundary = Qnil;
301 }
302 else
303 bset_undo_list (current_buffer,
304 Fcons (Qnil, BVAR (current_buffer, undo_list)));
305 }
306 last_boundary_position = PT;
307 last_boundary_buffer = current_buffer;
308 return Qnil;
309 }
310
311 /* At garbage collection time, make an undo list shorter at the end,
312 returning the truncated list. How this is done depends on the
313 variables undo-limit, undo-strong-limit and undo-outer-limit.
314 In some cases this works by calling undo-outer-limit-function. */
315
316 void
317 truncate_undo_list (struct buffer *b)
318 {
319 Lisp_Object list;
320 Lisp_Object prev, next, last_boundary;
321 EMACS_INT size_so_far = 0;
322
323 /* Make sure that calling undo-outer-limit-function
324 won't cause another GC. */
325 ptrdiff_t count = inhibit_garbage_collection ();
326
327 /* Make the buffer current to get its local values of variables such
328 as undo_limit. Also so that Vundo_outer_limit_function can
329 tell which buffer to operate on. */
330 record_unwind_current_buffer ();
331 set_buffer_internal (b);
332
333 list = BVAR (b, undo_list);
334
335 prev = Qnil;
336 next = list;
337 last_boundary = Qnil;
338
339 /* If the first element is an undo boundary, skip past it. */
340 if (CONSP (next) && NILP (XCAR (next)))
341 {
342 /* Add in the space occupied by this element and its chain link. */
343 size_so_far += sizeof (struct Lisp_Cons);
344
345 /* Advance to next element. */
346 prev = next;
347 next = XCDR (next);
348 }
349
350 /* Always preserve at least the most recent undo record
351 unless it is really horribly big.
352
353 Skip, skip, skip the undo, skip, skip, skip the undo,
354 Skip, skip, skip the undo, skip to the undo bound'ry. */
355
356 while (CONSP (next) && ! NILP (XCAR (next)))
357 {
358 Lisp_Object elt;
359 elt = XCAR (next);
360
361 /* Add in the space occupied by this element and its chain link. */
362 size_so_far += sizeof (struct Lisp_Cons);
363 if (CONSP (elt))
364 {
365 size_so_far += sizeof (struct Lisp_Cons);
366 if (STRINGP (XCAR (elt)))
367 size_so_far += (sizeof (struct Lisp_String) - 1
368 + SCHARS (XCAR (elt)));
369 }
370
371 /* Advance to next element. */
372 prev = next;
373 next = XCDR (next);
374 }
375
376 /* If by the first boundary we have already passed undo_outer_limit,
377 we're heading for memory full, so offer to clear out the list. */
378 if (INTEGERP (Vundo_outer_limit)
379 && size_so_far > XINT (Vundo_outer_limit)
380 && !NILP (Vundo_outer_limit_function))
381 {
382 Lisp_Object tem;
383 struct buffer *temp = last_undo_buffer;
384
385 /* Normally the function this calls is undo-outer-limit-truncate. */
386 tem = call1 (Vundo_outer_limit_function, make_number (size_so_far));
387 if (! NILP (tem))
388 {
389 /* The function is responsible for making
390 any desired changes in buffer-undo-list. */
391 unbind_to (count, Qnil);
392 return;
393 }
394 /* That function probably used the minibuffer, and if so, that
395 changed last_undo_buffer. Change it back so that we don't
396 force next change to make an undo boundary here. */
397 last_undo_buffer = temp;
398 }
399
400 if (CONSP (next))
401 last_boundary = prev;
402
403 /* Keep additional undo data, if it fits in the limits. */
404 while (CONSP (next))
405 {
406 Lisp_Object elt;
407 elt = XCAR (next);
408
409 /* When we get to a boundary, decide whether to truncate
410 either before or after it. The lower threshold, undo_limit,
411 tells us to truncate after it. If its size pushes past
412 the higher threshold undo_strong_limit, we truncate before it. */
413 if (NILP (elt))
414 {
415 if (size_so_far > undo_strong_limit)
416 break;
417 last_boundary = prev;
418 if (size_so_far > undo_limit)
419 break;
420 }
421
422 /* Add in the space occupied by this element and its chain link. */
423 size_so_far += sizeof (struct Lisp_Cons);
424 if (CONSP (elt))
425 {
426 size_so_far += sizeof (struct Lisp_Cons);
427 if (STRINGP (XCAR (elt)))
428 size_so_far += (sizeof (struct Lisp_String) - 1
429 + SCHARS (XCAR (elt)));
430 }
431
432 /* Advance to next element. */
433 prev = next;
434 next = XCDR (next);
435 }
436
437 /* If we scanned the whole list, it is short enough; don't change it. */
438 if (NILP (next))
439 ;
440 /* Truncate at the boundary where we decided to truncate. */
441 else if (!NILP (last_boundary))
442 XSETCDR (last_boundary, Qnil);
443 /* There's nothing we decided to keep, so clear it out. */
444 else
445 bset_undo_list (b, Qnil);
446
447 unbind_to (count, Qnil);
448 }
449
450 \f
451 void
452 syms_of_undo (void)
453 {
454 DEFSYM (Qinhibit_read_only, "inhibit-read-only");
455
456 /* Marker for function call undo list elements. */
457 DEFSYM (Qapply, "apply");
458
459 pending_boundary = Qnil;
460 staticpro (&pending_boundary);
461
462 last_undo_buffer = NULL;
463 last_boundary_buffer = NULL;
464
465 defsubr (&Sundo_boundary);
466
467 DEFVAR_INT ("undo-limit", undo_limit,
468 doc: /* Keep no more undo information once it exceeds this size.
469 This limit is applied when garbage collection happens.
470 When a previous command increases the total undo list size past this
471 value, the earlier commands that came before it are forgotten.
472
473 The size is counted as the number of bytes occupied,
474 which includes both saved text and other data. */);
475 undo_limit = 80000;
476
477 DEFVAR_INT ("undo-strong-limit", undo_strong_limit,
478 doc: /* Don't keep more than this much size of undo information.
479 This limit is applied when garbage collection happens.
480 When a previous command increases the total undo list size past this
481 value, that command and the earlier commands that came before it are forgotten.
482 However, the most recent buffer-modifying command's undo info
483 is never discarded for this reason.
484
485 The size is counted as the number of bytes occupied,
486 which includes both saved text and other data. */);
487 undo_strong_limit = 120000;
488
489 DEFVAR_LISP ("undo-outer-limit", Vundo_outer_limit,
490 doc: /* Outer limit on size of undo information for one command.
491 At garbage collection time, if the current command has produced
492 more than this much undo information, it discards the info and displays
493 a warning. This is a last-ditch limit to prevent memory overflow.
494
495 The size is counted as the number of bytes occupied, which includes
496 both saved text and other data. A value of nil means no limit. In
497 this case, accumulating one huge undo entry could make Emacs crash as
498 a result of memory overflow.
499
500 In fact, this calls the function which is the value of
501 `undo-outer-limit-function' with one argument, the size.
502 The text above describes the behavior of the function
503 that variable usually specifies. */);
504 Vundo_outer_limit = make_number (12000000);
505
506 DEFVAR_LISP ("undo-outer-limit-function", Vundo_outer_limit_function,
507 doc: /* Function to call when an undo list exceeds `undo-outer-limit'.
508 This function is called with one argument, the current undo list size
509 for the most recent command (since the last undo boundary).
510 If the function returns t, that means truncation has been fully handled.
511 If it returns nil, the other forms of truncation are done.
512
513 Garbage collection is inhibited around the call to this function,
514 so it must make sure not to do a lot of consing. */);
515 Vundo_outer_limit_function = Qnil;
516
517 DEFVAR_BOOL ("undo-inhibit-record-point", undo_inhibit_record_point,
518 doc: /* Non-nil means do not record `point' in `buffer-undo-list'. */);
519 undo_inhibit_record_point = false;
520 }