1 /* undo handling for GNU Emacs.
2 Copyright (C) 1990 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 /* Record an insertion that just happened or is about to happen,
30 for LENGTH characters at position BEG.
31 (It is possible to record an insertion before or after the fact
32 because we don't need to record the contents.) */
34 record_insert (beg
, length
)
35 Lisp_Object beg
, length
;
37 Lisp_Object lbeg
, lend
;
39 if (current_buffer
!= XBUFFER (last_undo_buffer
))
41 XSET (last_undo_buffer
, Lisp_Buffer
, current_buffer
);
43 if (EQ (current_buffer
->undo_list
, Qt
))
45 if (MODIFF
<= current_buffer
->save_modified
)
46 record_first_change ();
48 /* If this is following another insertion and consecutive with it
49 in the buffer, combine the two. */
50 if (XTYPE (current_buffer
->undo_list
) == Lisp_Cons
)
53 elt
= XCONS (current_buffer
->undo_list
)->car
;
54 if (XTYPE (elt
) == Lisp_Cons
55 && XTYPE (XCONS (elt
)->car
) == Lisp_Int
56 && XTYPE (XCONS (elt
)->cdr
) == Lisp_Int
57 && XINT (XCONS (elt
)->cdr
) == beg
)
59 XSETINT (XCONS (elt
)->cdr
, beg
+ length
);
64 XFASTINT (lbeg
) = beg
;
65 XFASTINT (lend
) = beg
+ length
;
66 current_buffer
->undo_list
= Fcons (Fcons (lbeg
, lend
), current_buffer
->undo_list
);
69 /* Record that a deletion is about to take place,
70 for LENGTH characters at location BEG. */
72 record_delete (beg
, length
)
75 Lisp_Object lbeg
, lend
, sbeg
;
77 if (current_buffer
!= XBUFFER (last_undo_buffer
))
79 XSET (last_undo_buffer
, Lisp_Buffer
, current_buffer
);
81 if (EQ (current_buffer
->undo_list
, Qt
))
83 if (MODIFF
<= current_buffer
->save_modified
)
84 record_first_change ();
86 if (point
== beg
+ length
)
87 XSET (sbeg
, Lisp_Int
, -beg
);
89 XFASTINT (sbeg
) = beg
;
90 XFASTINT (lbeg
) = beg
;
91 XFASTINT (lend
) = beg
+ length
;
92 current_buffer
->undo_list
93 = Fcons (Fcons (Fbuffer_substring (lbeg
, lend
), sbeg
),
94 current_buffer
->undo_list
);
97 /* Record that a replacement is about to take place,
98 for LENGTH characters at location BEG.
99 The replacement does not change the number of characters. */
101 record_change (beg
, length
)
104 record_delete (beg
, length
);
105 record_insert (beg
, length
);
108 /* Record that an unmodified buffer is about to be changed.
109 Record the file modification date so that when undoing this entry
110 we can tell whether it is obsolete because the file was saved again. */
112 record_first_change ()
114 Lisp_Object high
, low
;
115 XFASTINT (high
) = (current_buffer
->modtime
>> 16) & 0xffff;
116 XFASTINT (low
) = current_buffer
->modtime
& 0xffff;
117 current_buffer
->undo_list
= Fcons (Fcons (Qt
, Fcons (high
, low
)), current_buffer
->undo_list
);
120 DEFUN ("undo-boundary", Fundo_boundary
, Sundo_boundary
, 0, 0, 0,
121 "Mark a boundary between units of undo.\n\
122 An undo command will stop at this point,\n\
123 but another undo command will undo to the previous boundary.")
127 if (EQ (current_buffer
->undo_list
, Qt
))
129 tem
= Fcar (current_buffer
->undo_list
);
131 current_buffer
->undo_list
= Fcons (Qnil
, current_buffer
->undo_list
);
135 /* At garbage collection time, make an undo list shorter at the end,
136 returning the truncated list.
137 MINSIZE and MAXSIZE are the limits on size allowed, as described below.
138 In practice, these are the values of undo-threshold and
139 undo-high-threshold. */
142 truncate_undo_list (list
, minsize
, maxsize
)
144 int minsize
, maxsize
;
146 Lisp_Object prev
, next
, last_boundary
;
151 last_boundary
= Qnil
;
153 /* Always preserve at least the most recent undo record.
154 If the first element is an undo boundary, skip past it.
156 Skip, skip, skip the undo, skip, skip, skip the undo,
157 Skip, skip, skip the undo, skip to the undo bound'ry. */
158 if (XTYPE (next
) == Lisp_Cons
159 && XCONS (next
)->car
== Qnil
)
161 /* Add in the space occupied by this element and its chain link. */
162 size_so_far
+= sizeof (struct Lisp_Cons
);
164 /* Advance to next element. */
166 next
= XCONS (next
)->cdr
;
168 while (XTYPE (next
) == Lisp_Cons
169 && XCONS (next
)->car
!= Qnil
)
172 elt
= XCONS (next
)->car
;
174 /* Add in the space occupied by this element and its chain link. */
175 size_so_far
+= sizeof (struct Lisp_Cons
);
176 if (XTYPE (elt
) == Lisp_Cons
)
178 size_so_far
+= sizeof (struct Lisp_Cons
);
179 if (XTYPE (XCONS (elt
)->car
) == Lisp_String
)
180 size_so_far
+= (sizeof (struct Lisp_String
) - 1
181 + XSTRING (XCONS (elt
)->car
)->size
);
184 /* Advance to next element. */
186 next
= XCONS (next
)->cdr
;
188 if (XTYPE (next
) == Lisp_Cons
)
189 last_boundary
= prev
;
191 while (XTYPE (next
) == Lisp_Cons
)
194 elt
= XCONS (next
)->car
;
196 /* When we get to a boundary, decide whether to truncate
197 either before or after it. The lower threshold, MINSIZE,
198 tells us to truncate after it. If its size pushes past
199 the higher threshold MAXSIZE as well, we truncate before it. */
202 if (size_so_far
> maxsize
)
204 last_boundary
= prev
;
205 if (size_so_far
> minsize
)
209 /* Add in the space occupied by this element and its chain link. */
210 size_so_far
+= sizeof (struct Lisp_Cons
);
211 if (XTYPE (elt
) == Lisp_Cons
)
213 size_so_far
+= sizeof (struct Lisp_Cons
);
214 if (XTYPE (XCONS (elt
)->car
) == Lisp_String
)
215 size_so_far
+= (sizeof (struct Lisp_String
) - 1
216 + XSTRING (XCONS (elt
)->car
)->size
);
219 /* Advance to next element. */
221 next
= XCONS (next
)->cdr
;
224 /* If we scanned the whole list, it is short enough; don't change it. */
228 /* Truncate at the boundary where we decided to truncate. */
229 if (!NILP (last_boundary
))
231 XCONS (last_boundary
)->cdr
= Qnil
;
238 DEFUN ("primitive-undo", Fprimitive_undo
, Sprimitive_undo
, 2, 2, 0,
239 "Undo N records from the front of the list LIST.\n\
240 Return what remains of the list.")
242 Lisp_Object count
, list
;
244 register int arg
= XINT (count
);
245 #if 0 /* This is a good feature, but would make undo-start
246 unable to do what is expected. */
249 /* If the head of the list is a boundary, it is the boundary
250 preceding this command. Get rid of it and don't count it. */
260 Lisp_Object next
, car
, cdr
;
269 Lisp_Object high
, low
;
273 mod_time
= (high
<< 16) + low
;
274 /* If this records an obsolete save
275 (not matching the actual disk file)
276 then don't mark unmodified. */
277 if (mod_time
!= current_buffer
->modtime
)
279 #ifdef CLASH_DETECTION
281 #endif /* CLASH_DETECTION */
282 Fset_buffer_modified_p (Qnil
);
284 else if (XTYPE (car
) == Lisp_Int
&& XTYPE (cdr
) == Lisp_Int
)
287 if (XINT (car
) < BEGV
289 error ("Changes to be undone are outside visible portion of buffer");
290 Fdelete_region (car
, cdr
);
293 else if (XTYPE (car
) == Lisp_String
&& XTYPE (cdr
) == Lisp_Int
)
296 int pos
= XINT (cdr
);
300 if (-pos
< BEGV
|| -pos
> ZV
)
301 error ("Changes to be undone are outside visible portion of buffer");
303 Finsert (1, &membuf
);
307 if (pos
< BEGV
|| pos
> ZV
)
308 error ("Changes to be undone are outside visible portion of buffer");
310 Finsert (1, &membuf
);
323 defsubr (&Sprimitive_undo
);
324 defsubr (&Sundo_boundary
);