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. */
26 /* Last buffer for which undo information was recorded. */
27 Lisp_Object last_undo_buffer
;
29 Lisp_Object Qinhibit_read_only
;
31 /* Record an insertion that just happened or is about to happen,
32 for LENGTH characters at position BEG.
33 (It is possible to record an insertion before or after the fact
34 because we don't need to record the contents.) */
36 record_insert (beg
, length
)
37 Lisp_Object beg
, length
;
39 Lisp_Object lbeg
, lend
;
41 if (EQ (current_buffer
->undo_list
, Qt
))
44 if (current_buffer
!= XBUFFER (last_undo_buffer
))
46 XSET (last_undo_buffer
, Lisp_Buffer
, current_buffer
);
48 if (MODIFF
<= current_buffer
->save_modified
)
49 record_first_change ();
51 /* If this is following another insertion and consecutive with it
52 in the buffer, combine the two. */
53 if (XTYPE (current_buffer
->undo_list
) == Lisp_Cons
)
56 elt
= XCONS (current_buffer
->undo_list
)->car
;
57 if (XTYPE (elt
) == Lisp_Cons
58 && XTYPE (XCONS (elt
)->car
) == Lisp_Int
59 && XTYPE (XCONS (elt
)->cdr
) == Lisp_Int
60 && XINT (XCONS (elt
)->cdr
) == XINT (beg
))
62 XSETINT (XCONS (elt
)->cdr
, XINT (beg
) + XINT (length
));
68 XSET (lend
, Lisp_Int
, XINT (beg
) + XINT (length
));
69 current_buffer
->undo_list
= Fcons (Fcons (lbeg
, lend
),
70 current_buffer
->undo_list
);
73 /* Record that a deletion is about to take place,
74 for LENGTH characters at location BEG. */
76 record_delete (beg
, length
)
79 Lisp_Object lbeg
, lend
, sbeg
;
81 if (EQ (current_buffer
->undo_list
, Qt
))
84 if (current_buffer
!= XBUFFER (last_undo_buffer
))
86 XSET (last_undo_buffer
, Lisp_Buffer
, current_buffer
);
88 if (MODIFF
<= current_buffer
->save_modified
)
89 record_first_change ();
91 if (point
== beg
+ length
)
92 XSET (sbeg
, Lisp_Int
, -beg
);
94 XFASTINT (sbeg
) = beg
;
95 XFASTINT (lbeg
) = beg
;
96 XFASTINT (lend
) = beg
+ length
;
98 /* If point isn't at start of deleted range, record where it is. */
99 if (PT
!= XFASTINT (sbeg
))
100 current_buffer
->undo_list
101 = Fcons (make_number (PT
), current_buffer
->undo_list
);
103 current_buffer
->undo_list
104 = Fcons (Fcons (Fbuffer_substring (lbeg
, lend
), sbeg
),
105 current_buffer
->undo_list
);
108 /* Record that a replacement is about to take place,
109 for LENGTH characters at location BEG.
110 The replacement does not change the number of characters. */
112 record_change (beg
, length
)
115 record_delete (beg
, length
);
116 record_insert (beg
, length
);
119 /* Record that an unmodified buffer is about to be changed.
120 Record the file modification date so that when undoing this entry
121 we can tell whether it is obsolete because the file was saved again. */
123 record_first_change ()
125 Lisp_Object high
, low
;
126 XFASTINT (high
) = (current_buffer
->modtime
>> 16) & 0xffff;
127 XFASTINT (low
) = current_buffer
->modtime
& 0xffff;
128 current_buffer
->undo_list
= Fcons (Fcons (Qt
, Fcons (high
, low
)), current_buffer
->undo_list
);
131 /* Record a change in property PROP (whose old value was VAL)
132 for LENGTH characters starting at position BEG in BUFFER. */
134 record_property_change (beg
, length
, prop
, value
, buffer
)
136 Lisp_Object prop
, value
, buffer
;
138 Lisp_Object lbeg
, lend
, entry
;
139 struct buffer
*obuf
= current_buffer
;
142 if (EQ (current_buffer
->undo_list
, Qt
))
145 if (!EQ (buffer
, last_undo_buffer
))
147 last_undo_buffer
= buffer
;
149 /* Switch temporarily to the buffer that was changed. */
150 current_buffer
= XBUFFER (buffer
);
155 if (MODIFF
<= current_buffer
->save_modified
)
156 record_first_change ();
158 XSET (lbeg
, Lisp_Int
, beg
);
159 XSET (lend
, Lisp_Int
, beg
+ length
);
160 entry
= Fcons (Qnil
, Fcons (prop
, Fcons (value
, Fcons (lbeg
, lend
))));
161 current_buffer
->undo_list
= Fcons (entry
, current_buffer
->undo_list
);
163 current_buffer
= obuf
;
166 DEFUN ("undo-boundary", Fundo_boundary
, Sundo_boundary
, 0, 0, 0,
167 "Mark a boundary between units of undo.\n\
168 An undo command will stop at this point,\n\
169 but another undo command will undo to the previous boundary.")
173 if (EQ (current_buffer
->undo_list
, Qt
))
175 tem
= Fcar (current_buffer
->undo_list
);
177 current_buffer
->undo_list
= Fcons (Qnil
, current_buffer
->undo_list
);
181 /* At garbage collection time, make an undo list shorter at the end,
182 returning the truncated list.
183 MINSIZE and MAXSIZE are the limits on size allowed, as described below.
184 In practice, these are the values of undo-limit and
185 undo-strong-limit. */
188 truncate_undo_list (list
, minsize
, maxsize
)
190 int minsize
, maxsize
;
192 Lisp_Object prev
, next
, last_boundary
;
197 last_boundary
= Qnil
;
199 /* Always preserve at least the most recent undo record.
200 If the first element is an undo boundary, skip past it.
202 Skip, skip, skip the undo, skip, skip, skip the undo,
203 Skip, skip, skip the undo, skip to the undo bound'ry.
204 (Get it? "Skip to my Loo?") */
205 if (XTYPE (next
) == Lisp_Cons
206 && NILP (XCONS (next
)->car
))
208 /* Add in the space occupied by this element and its chain link. */
209 size_so_far
+= sizeof (struct Lisp_Cons
);
211 /* Advance to next element. */
213 next
= XCONS (next
)->cdr
;
215 while (XTYPE (next
) == Lisp_Cons
216 && ! NILP (XCONS (next
)->car
))
219 elt
= XCONS (next
)->car
;
221 /* Add in the space occupied by this element and its chain link. */
222 size_so_far
+= sizeof (struct Lisp_Cons
);
223 if (XTYPE (elt
) == Lisp_Cons
)
225 size_so_far
+= sizeof (struct Lisp_Cons
);
226 if (XTYPE (XCONS (elt
)->car
) == Lisp_String
)
227 size_so_far
+= (sizeof (struct Lisp_String
) - 1
228 + XSTRING (XCONS (elt
)->car
)->size
);
231 /* Advance to next element. */
233 next
= XCONS (next
)->cdr
;
235 if (XTYPE (next
) == Lisp_Cons
)
236 last_boundary
= prev
;
238 while (XTYPE (next
) == Lisp_Cons
)
241 elt
= XCONS (next
)->car
;
243 /* When we get to a boundary, decide whether to truncate
244 either before or after it. The lower threshold, MINSIZE,
245 tells us to truncate after it. If its size pushes past
246 the higher threshold MAXSIZE as well, we truncate before it. */
249 if (size_so_far
> maxsize
)
251 last_boundary
= prev
;
252 if (size_so_far
> minsize
)
256 /* Add in the space occupied by this element and its chain link. */
257 size_so_far
+= sizeof (struct Lisp_Cons
);
258 if (XTYPE (elt
) == Lisp_Cons
)
260 size_so_far
+= sizeof (struct Lisp_Cons
);
261 if (XTYPE (XCONS (elt
)->car
) == Lisp_String
)
262 size_so_far
+= (sizeof (struct Lisp_String
) - 1
263 + XSTRING (XCONS (elt
)->car
)->size
);
266 /* Advance to next element. */
268 next
= XCONS (next
)->cdr
;
271 /* If we scanned the whole list, it is short enough; don't change it. */
275 /* Truncate at the boundary where we decided to truncate. */
276 if (!NILP (last_boundary
))
278 XCONS (last_boundary
)->cdr
= Qnil
;
285 DEFUN ("primitive-undo", Fprimitive_undo
, Sprimitive_undo
, 2, 2, 0,
286 "Undo N records from the front of the list LIST.\n\
287 Return what remains of the list.")
291 int count
= specpdl_ptr
- specpdl
;
292 register int arg
= XINT (n
);
293 #if 0 /* This is a good feature, but would make undo-start
294 unable to do what is expected. */
297 /* If the head of the list is a boundary, it is the boundary
298 preceding this command. Get rid of it and don't count it. */
304 /* Don't let read-only properties interfere with undo. */
305 if (NILP (current_buffer
->read_only
))
306 specbind (Qinhibit_read_only
, Qt
);
315 /* Exit inner loop at undo boundary. */
318 /* Handle an integer by setting point to that value. */
319 if (XTYPE (next
) == Lisp_Int
)
320 SET_PT (clip_to_bounds (BEGV
, XINT (next
), ZV
));
321 else if (XTYPE (next
) == Lisp_Cons
)
323 Lisp_Object car
, cdr
;
329 /* Element (t high . low) records previous modtime. */
330 Lisp_Object high
, low
;
335 mod_time
= (XFASTINT (high
) << 16) + XFASTINT (low
);
336 /* If this records an obsolete save
337 (not matching the actual disk file)
338 then don't mark unmodified. */
339 if (mod_time
!= current_buffer
->modtime
)
341 #ifdef CLASH_DETECTION
343 #endif /* CLASH_DETECTION */
344 Fset_buffer_modified_p (Qnil
);
346 #ifdef USE_TEXT_PROPERTIES
347 else if (EQ (car
, Qnil
))
349 /* Element (nil prop val beg . end) is property change. */
350 Lisp_Object beg
, end
, prop
, val
;
359 Fput_text_property (beg
, end
, prop
, val
, Qnil
);
361 #endif /* USE_TEXT_PROPERTIES */
362 else if (XTYPE (car
) == Lisp_Int
&& XTYPE (cdr
) == Lisp_Int
)
364 /* Element (BEG . END) means range was inserted. */
367 if (XINT (car
) < BEGV
369 error ("Changes to be undone are outside visible portion of buffer");
370 /* Set point first thing, so that undoing this undo
371 does not send point back to where it is now. */
373 Fdelete_region (car
, cdr
);
375 else if (XTYPE (car
) == Lisp_String
&& XTYPE (cdr
) == Lisp_Int
)
377 /* Element (STRING . POS) means STRING was deleted. */
379 int pos
= XINT (cdr
);
384 if (-pos
< BEGV
|| -pos
> ZV
)
385 error ("Changes to be undone are outside visible portion of buffer");
387 Finsert (1, &membuf
);
391 if (pos
< BEGV
|| pos
> ZV
)
392 error ("Changes to be undone are outside visible portion of buffer");
395 /* Insert before markers so that if the mark is
396 currently on the boundary of this deletion, it
397 ends up on the other side of the now-undeleted
398 text from point. Since undo doesn't even keep
399 track of the mark, this isn't really necessary,
400 but it may lead to better behavior in certain
402 Finsert_before_markers (1, &membuf
);
411 return unbind_to (count
, list
);
416 Qinhibit_read_only
= intern ("inhibit-read-only");
417 staticpro (&Qinhibit_read_only
);
419 defsubr (&Sprimitive_undo
);
420 defsubr (&Sundo_boundary
);