(vmotion): Use minibuf_prompt_width despite window-start.
[emacs.git] / src / undo.c
blob683fa66b89a208d7d3aeb9534ae1438020a4ebb5
1 /* undo handling for GNU Emacs.
2 Copyright (C) 1990, 1993 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY. No author or distributor
8 accepts responsibility to anyone for the consequences of using it
9 or for whether it serves any particular purpose or works at all,
10 unless he says so in writing. Refer to the GNU Emacs General Public
11 License for full details.
13 Everyone is granted permission to copy, modify and redistribute
14 GNU Emacs, but only under the conditions described in the
15 GNU Emacs General Public License. A copy of this license is
16 supposed to have been given to you along with GNU Emacs so you
17 can know your rights and responsibilities. It should be in a
18 file named COPYING. Among other things, the copyright notice
19 and this notice must be preserved on all copies. */
22 #include <config.h>
23 #include "lisp.h"
24 #include "buffer.h"
25 #include "commands.h"
27 /* Last buffer for which undo information was recorded. */
28 Lisp_Object last_undo_buffer;
30 Lisp_Object Qinhibit_read_only;
32 /* The first time a command records something for undo.
33 it also allocates the undo-boundary object
34 which will be added to the list at the end of the command.
35 This ensures we can't run out of space while trying to make
36 an undo-boundary. */
37 Lisp_Object pending_boundary;
39 /* Record an insertion that just happened or is about to happen,
40 for LENGTH characters at position BEG.
41 (It is possible to record an insertion before or after the fact
42 because we don't need to record the contents.) */
44 record_insert (beg, length)
45 Lisp_Object beg, length;
47 Lisp_Object lbeg, lend;
49 if (EQ (current_buffer->undo_list, Qt))
50 return;
52 /* Allocate a cons cell to be the undo boundary after this command. */
53 if (NILP (pending_boundary))
54 pending_boundary = Fcons (Qnil, Qnil);
56 if (current_buffer != XBUFFER (last_undo_buffer))
57 Fundo_boundary ();
58 XSET (last_undo_buffer, Lisp_Buffer, current_buffer);
60 if (MODIFF <= current_buffer->save_modified)
61 record_first_change ();
63 /* If this is following another insertion and consecutive with it
64 in the buffer, combine the two. */
65 if (XTYPE (current_buffer->undo_list) == Lisp_Cons)
67 Lisp_Object elt;
68 elt = XCONS (current_buffer->undo_list)->car;
69 if (XTYPE (elt) == Lisp_Cons
70 && XTYPE (XCONS (elt)->car) == Lisp_Int
71 && XTYPE (XCONS (elt)->cdr) == Lisp_Int
72 && XINT (XCONS (elt)->cdr) == XINT (beg))
74 XSETINT (XCONS (elt)->cdr, XINT (beg) + XINT (length));
75 return;
79 lbeg = beg;
80 XSET (lend, Lisp_Int, XINT (beg) + XINT (length));
81 current_buffer->undo_list = Fcons (Fcons (lbeg, lend),
82 current_buffer->undo_list);
85 /* Record that a deletion is about to take place,
86 for LENGTH characters at location BEG. */
88 record_delete (beg, length)
89 int beg, length;
91 Lisp_Object lbeg, lend, sbeg;
93 if (EQ (current_buffer->undo_list, Qt))
94 return;
96 /* Allocate a cons cell to be the undo boundary after this command. */
97 if (NILP (pending_boundary))
98 pending_boundary = Fcons (Qnil, Qnil);
100 if (current_buffer != XBUFFER (last_undo_buffer))
101 Fundo_boundary ();
102 XSET (last_undo_buffer, Lisp_Buffer, current_buffer);
104 if (MODIFF <= current_buffer->save_modified)
105 record_first_change ();
107 if (point == beg + length)
108 XSET (sbeg, Lisp_Int, -beg);
109 else
110 XFASTINT (sbeg) = beg;
111 XFASTINT (lbeg) = beg;
112 XFASTINT (lend) = beg + length;
114 /* If point wasn't at start of deleted range, record where it was. */
115 if (last_point_position != XFASTINT (sbeg))
116 current_buffer->undo_list
117 = Fcons (make_number (last_point_position), current_buffer->undo_list);
119 current_buffer->undo_list
120 = Fcons (Fcons (Fbuffer_substring (lbeg, lend), sbeg),
121 current_buffer->undo_list);
124 /* Record that a replacement is about to take place,
125 for LENGTH characters at location BEG.
126 The replacement does not change the number of characters. */
128 record_change (beg, length)
129 int beg, length;
131 record_delete (beg, length);
132 record_insert (beg, length);
135 /* Record that an unmodified buffer is about to be changed.
136 Record the file modification date so that when undoing this entry
137 we can tell whether it is obsolete because the file was saved again. */
139 record_first_change ()
141 Lisp_Object high, low;
143 if (EQ (current_buffer->undo_list, Qt))
144 return;
146 if (current_buffer != XBUFFER (last_undo_buffer))
147 Fundo_boundary ();
148 XSET (last_undo_buffer, Lisp_Buffer, current_buffer);
150 XFASTINT (high) = (current_buffer->modtime >> 16) & 0xffff;
151 XFASTINT (low) = current_buffer->modtime & 0xffff;
152 current_buffer->undo_list = Fcons (Fcons (Qt, Fcons (high, low)), current_buffer->undo_list);
155 /* Record a change in property PROP (whose old value was VAL)
156 for LENGTH characters starting at position BEG in BUFFER. */
158 record_property_change (beg, length, prop, value, buffer)
159 int beg, length;
160 Lisp_Object prop, value, buffer;
162 Lisp_Object lbeg, lend, entry;
163 struct buffer *obuf = current_buffer;
164 int boundary = 0;
166 if (EQ (XBUFFER (buffer)->undo_list, Qt))
167 return;
169 /* Allocate a cons cell to be the undo boundary after this command. */
170 if (NILP (pending_boundary))
171 pending_boundary = Fcons (Qnil, Qnil);
173 if (!EQ (buffer, last_undo_buffer))
174 boundary = 1;
175 last_undo_buffer = buffer;
177 /* Switch temporarily to the buffer that was changed. */
178 current_buffer = XBUFFER (buffer);
180 if (boundary)
181 Fundo_boundary ();
183 if (MODIFF <= current_buffer->save_modified)
184 record_first_change ();
186 XSET (lbeg, Lisp_Int, beg);
187 XSET (lend, Lisp_Int, beg + length);
188 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend))));
189 current_buffer->undo_list = Fcons (entry, current_buffer->undo_list);
191 current_buffer = obuf;
194 DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0,
195 "Mark a boundary between units of undo.\n\
196 An undo command will stop at this point,\n\
197 but another undo command will undo to the previous boundary.")
200 Lisp_Object tem;
201 if (EQ (current_buffer->undo_list, Qt))
202 return Qnil;
203 tem = Fcar (current_buffer->undo_list);
204 if (!NILP (tem))
206 /* One way or another, cons nil onto the front of the undo list. */
207 if (!NILP (pending_boundary))
209 /* If we have preallocated the cons cell to use here,
210 use that one. */
211 XCONS (pending_boundary)->cdr = current_buffer->undo_list;
212 current_buffer->undo_list = pending_boundary;
213 pending_boundary = Qnil;
215 else
216 current_buffer->undo_list = Fcons (Qnil, current_buffer->undo_list);
218 return Qnil;
221 /* At garbage collection time, make an undo list shorter at the end,
222 returning the truncated list.
223 MINSIZE and MAXSIZE are the limits on size allowed, as described below.
224 In practice, these are the values of undo-limit and
225 undo-strong-limit. */
227 Lisp_Object
228 truncate_undo_list (list, minsize, maxsize)
229 Lisp_Object list;
230 int minsize, maxsize;
232 Lisp_Object prev, next, last_boundary;
233 int size_so_far = 0;
235 prev = Qnil;
236 next = list;
237 last_boundary = Qnil;
239 /* Always preserve at least the most recent undo record.
240 If the first element is an undo boundary, skip past it.
242 Skip, skip, skip the undo, skip, skip, skip the undo,
243 Skip, skip, skip the undo, skip to the undo bound'ry.
244 (Get it? "Skip to my Loo?") */
245 if (XTYPE (next) == Lisp_Cons
246 && NILP (XCONS (next)->car))
248 /* Add in the space occupied by this element and its chain link. */
249 size_so_far += sizeof (struct Lisp_Cons);
251 /* Advance to next element. */
252 prev = next;
253 next = XCONS (next)->cdr;
255 while (XTYPE (next) == Lisp_Cons
256 && ! NILP (XCONS (next)->car))
258 Lisp_Object elt;
259 elt = XCONS (next)->car;
261 /* Add in the space occupied by this element and its chain link. */
262 size_so_far += sizeof (struct Lisp_Cons);
263 if (XTYPE (elt) == Lisp_Cons)
265 size_so_far += sizeof (struct Lisp_Cons);
266 if (XTYPE (XCONS (elt)->car) == Lisp_String)
267 size_so_far += (sizeof (struct Lisp_String) - 1
268 + XSTRING (XCONS (elt)->car)->size);
271 /* Advance to next element. */
272 prev = next;
273 next = XCONS (next)->cdr;
275 if (XTYPE (next) == Lisp_Cons)
276 last_boundary = prev;
278 while (XTYPE (next) == Lisp_Cons)
280 Lisp_Object elt;
281 elt = XCONS (next)->car;
283 /* When we get to a boundary, decide whether to truncate
284 either before or after it. The lower threshold, MINSIZE,
285 tells us to truncate after it. If its size pushes past
286 the higher threshold MAXSIZE as well, we truncate before it. */
287 if (NILP (elt))
289 if (size_so_far > maxsize)
290 break;
291 last_boundary = prev;
292 if (size_so_far > minsize)
293 break;
296 /* Add in the space occupied by this element and its chain link. */
297 size_so_far += sizeof (struct Lisp_Cons);
298 if (XTYPE (elt) == Lisp_Cons)
300 size_so_far += sizeof (struct Lisp_Cons);
301 if (XTYPE (XCONS (elt)->car) == Lisp_String)
302 size_so_far += (sizeof (struct Lisp_String) - 1
303 + XSTRING (XCONS (elt)->car)->size);
306 /* Advance to next element. */
307 prev = next;
308 next = XCONS (next)->cdr;
311 /* If we scanned the whole list, it is short enough; don't change it. */
312 if (NILP (next))
313 return list;
315 /* Truncate at the boundary where we decided to truncate. */
316 if (!NILP (last_boundary))
318 XCONS (last_boundary)->cdr = Qnil;
319 return list;
321 else
322 return Qnil;
325 DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0,
326 "Undo N records from the front of the list LIST.\n\
327 Return what remains of the list.")
328 (n, list)
329 Lisp_Object n, list;
331 int count = specpdl_ptr - specpdl;
332 register int arg = XINT (n);
333 #if 0 /* This is a good feature, but would make undo-start
334 unable to do what is expected. */
335 Lisp_Object tem;
337 /* If the head of the list is a boundary, it is the boundary
338 preceding this command. Get rid of it and don't count it. */
339 tem = Fcar (list);
340 if (NILP (tem))
341 list = Fcdr (list);
342 #endif
344 /* Don't let read-only properties interfere with undo. */
345 if (NILP (current_buffer->read_only))
346 specbind (Qinhibit_read_only, Qt);
348 while (arg > 0)
350 while (1)
352 Lisp_Object next;
353 next = Fcar (list);
354 list = Fcdr (list);
355 /* Exit inner loop at undo boundary. */
356 if (NILP (next))
357 break;
358 /* Handle an integer by setting point to that value. */
359 if (XTYPE (next) == Lisp_Int)
360 SET_PT (clip_to_bounds (BEGV, XINT (next), ZV));
361 else if (XTYPE (next) == Lisp_Cons)
363 Lisp_Object car, cdr;
365 car = Fcar (next);
366 cdr = Fcdr (next);
367 if (EQ (car, Qt))
369 /* Element (t high . low) records previous modtime. */
370 Lisp_Object high, low;
371 int mod_time;
373 high = Fcar (cdr);
374 low = Fcdr (cdr);
375 mod_time = (XFASTINT (high) << 16) + XFASTINT (low);
376 /* If this records an obsolete save
377 (not matching the actual disk file)
378 then don't mark unmodified. */
379 if (mod_time != current_buffer->modtime)
380 break;
381 #ifdef CLASH_DETECTION
382 Funlock_buffer ();
383 #endif /* CLASH_DETECTION */
384 Fset_buffer_modified_p (Qnil);
386 #ifdef USE_TEXT_PROPERTIES
387 else if (EQ (car, Qnil))
389 /* Element (nil prop val beg . end) is property change. */
390 Lisp_Object beg, end, prop, val;
392 prop = Fcar (cdr);
393 cdr = Fcdr (cdr);
394 val = Fcar (cdr);
395 cdr = Fcdr (cdr);
396 beg = Fcar (cdr);
397 end = Fcdr (cdr);
399 Fput_text_property (beg, end, prop, val, Qnil);
401 #endif /* USE_TEXT_PROPERTIES */
402 else if (XTYPE (car) == Lisp_Int && XTYPE (cdr) == Lisp_Int)
404 /* Element (BEG . END) means range was inserted. */
405 Lisp_Object end;
407 if (XINT (car) < BEGV
408 || XINT (cdr) > ZV)
409 error ("Changes to be undone are outside visible portion of buffer");
410 /* Set point first thing, so that undoing this undo
411 does not send point back to where it is now. */
412 Fgoto_char (car);
413 Fdelete_region (car, cdr);
415 else if (XTYPE (car) == Lisp_String && XTYPE (cdr) == Lisp_Int)
417 /* Element (STRING . POS) means STRING was deleted. */
418 Lisp_Object membuf;
419 int pos = XINT (cdr);
421 membuf = car;
422 if (pos < 0)
424 if (-pos < BEGV || -pos > ZV)
425 error ("Changes to be undone are outside visible portion of buffer");
426 SET_PT (-pos);
427 Finsert (1, &membuf);
429 else
431 if (pos < BEGV || pos > ZV)
432 error ("Changes to be undone are outside visible portion of buffer");
433 SET_PT (pos);
435 /* Insert before markers so that if the mark is
436 currently on the boundary of this deletion, it
437 ends up on the other side of the now-undeleted
438 text from point. Since undo doesn't even keep
439 track of the mark, this isn't really necessary,
440 but it may lead to better behavior in certain
441 situations. */
442 Finsert_before_markers (1, &membuf);
443 SET_PT (pos);
448 arg--;
451 return unbind_to (count, list);
454 syms_of_undo ()
456 Qinhibit_read_only = intern ("inhibit-read-only");
457 staticpro (&Qinhibit_read_only);
459 pending_boundary = Qnil;
460 staticpro (&pending_boundary);
462 defsubr (&Sprimitive_undo);
463 defsubr (&Sundo_boundary);