annotate src/undo.c @ 223:2c611d1463a6 r20-4b10

Import from CVS: tag r20-4b10
author cvs
date Mon, 13 Aug 2007 10:10:54 +0200
parents d44af0c54775
children 558f606b08ae
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* undo handling for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1990, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.28. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 /* Maintained in event-stream.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 extern Bufpos last_point_position;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 extern Lisp_Object last_point_position_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 /* Extent code needs to know about undo because the behavior of insert()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 with regard to extents varies depending on whether we are inside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 an undo or not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 int inside_undo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 /* Last buffer for which undo information was recorded. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 static Lisp_Object last_undo_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Lisp_Object Qinhibit_read_only;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* The first time a command records something for undo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 it also allocates the undo-boundary object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 which will be added to the list at the end of the command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 This ensures we can't run out of space while trying to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 an undo-boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object pending_boundary;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 undo_boundary (struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object tem = Fcar (b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 /* One way or another, cons nil onto the front of the undo list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 if (CONSP (pending_boundary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* If we have preallocated the cons cell to use here,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 use that one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 XCDR (pending_boundary) = b->undo_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 b->undo_list = pending_boundary;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 pending_boundary = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 b->undo_list = Fcons (Qnil, b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 undo_prelude (struct buffer *b, int hack_pending_boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 if (EQ (b->undo_list, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 if (NILP (last_undo_buffer) || b != XBUFFER (last_undo_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 undo_boundary (b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 XSETBUFFER (last_undo_buffer, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 }
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 167
diff changeset
83
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 /* Allocate a cons cell to be the undo boundary after this command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 if (hack_pending_boundary && NILP (pending_boundary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 pending_boundary = Fcons (Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 if (BUF_MODIFF (b) <= BUF_SAVE_MODIFF (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 /* Record that an unmodified buffer is about to be changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Record the file modification date so that when undoing this entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 we can tell whether it is obsolete because the file was saved again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 b->undo_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 = Fcons (Fcons (Qt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Fcons (make_int ((b->modtime >> 16) & 0xffff),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 make_int (b->modtime & 0xffff))),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 restore_inside_undo (Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 inside_undo = XINT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 /* Record an insertion that just happened or is about to happen,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 for LENGTH characters at position BEG.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (It is possible to record an insertion before or after the fact
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 because we don't need to record the contents.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 record_insert (struct buffer *b, Bufpos beg, Charcount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 if (!undo_prelude (b, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 /* If this is following another insertion and consecutive with it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 in the buffer, combine the two. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 if (CONSP (b->undo_list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 elt = XCAR (b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 if (CONSP (elt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 && INTP (XCAR (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 && INTP (XCDR (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 && XINT (XCDR (elt)) == beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 XCDR (elt) = make_int (beg + length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 167
diff changeset
139 b->undo_list = Fcons (Fcons (make_int (beg),
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 make_int (beg + length)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 /* Record that a deletion is about to take place,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 for LENGTH characters at location BEG. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 record_delete (struct buffer *b, Bufpos beg, Charcount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object sbeg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 int at_boundary;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 if (!undo_prelude (b, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 at_boundary = (CONSP (b->undo_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 && NILP (XCAR (b->undo_list)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 if (BUF_PT (b) == beg + length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 sbeg = make_int (-beg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 sbeg = make_int (beg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 167
diff changeset
165 /* If we are just after an undo boundary, and
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 point wasn't at start of deleted range, record where it was. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 if (at_boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 && BUFFERP (last_point_position_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 && b == XBUFFER (last_point_position_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 && last_point_position != XINT (sbeg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 b->undo_list = Fcons (make_int (last_point_position), b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 b->undo_list = Fcons (Fcons (make_string_from_buffer (b, beg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 length),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 sbeg),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 /* Record that a replacement is about to take place,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 for LENGTH characters at location BEG.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 The replacement does not change the number of characters. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 record_change (struct buffer *b, Bufpos beg, Charcount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 record_delete (b, beg, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 record_insert (b, beg, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 /* Record that an EXTENT is about to be attached or detached in its buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 This works much like a deletion or insertion, except that there's no string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 The tricky part is that the buffer we operate on comes from EXTENT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 Most extent changes happen as a side effect of string insertion and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 deletion; this call is solely for Fdetach_extent() and Finsert_extent().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 record_extent (Lisp_Object extent, int attached)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 {
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
199 Lisp_Object obj = Fextent_object (extent);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
201 if (BUFFERP (obj))
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
202 {
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
203 Lisp_Object token;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
204 struct buffer *b = XBUFFER (obj);
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
205 if (!undo_prelude (b, 1))
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
206 return;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
207 if (attached)
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
208 token = extent;
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
209 else
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
210 token = list3 (extent, Fextent_start_position (extent),
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
211 Fextent_end_position (extent));
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
212 b->undo_list = Fcons (token, b->undo_list);
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
213 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 else
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 70
diff changeset
215 return;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 /* Record a change in property PROP (whose old value was VAL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 for LENGTH characters starting at position BEG in BUFFER. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 record_property_change (Bufpos beg, Charcount length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Lisp_Object prop, Lisp_Object value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Lisp_Object lbeg, lend, entry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 struct buffer *b = XBUFFER (buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 if (!undo_prelude (b, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 lbeg = make_int (beg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 lend = make_int (beg + length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 b->undo_list = Fcons (entry, b->undo_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 #endif /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
240 DEFUN ("undo-boundary", Fundo_boundary, 0, 0, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 Mark a boundary between units of undo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 An undo command will stop at this point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 but another undo command will undo to the previous boundary.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
244 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
245 ())
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 if (EQ (current_buffer->undo_list, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 undo_boundary (current_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 /* At garbage collection time, make an undo list shorter at the end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 returning the truncated list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 MINSIZE and MAXSIZE are the limits on size allowed, as described below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 In practice, these are the values of undo-threshold and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 undo-high-threshold. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 truncate_undo_list (Lisp_Object list, int minsize, int maxsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 Lisp_Object prev, next, last_boundary;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 int size_so_far = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 if (!(minsize > 0 || maxsize > 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 prev = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 next = list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 last_boundary = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (!CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 return (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 /* Always preserve at least the most recent undo record.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 If the first element is an undo boundary, skip past it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 if (CONSP (next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 && NILP (XCAR (next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 /* Add in the space occupied by this element and its chain link. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 size_so_far += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 /* Advance to next element. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 next = XCDR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 while (CONSP (next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 && !NILP (XCAR (next)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 elt = XCAR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 /* Add in the space occupied by this element and its chain link. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 size_so_far += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 if (CONSP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 size_so_far += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 if (STRINGP (XCAR (elt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 size_so_far += (sizeof (struct Lisp_String) - 1
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
300 + XSTRING_LENGTH (XCAR (elt)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 /* Advance to next element. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 next = XCDR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 if (CONSP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 last_boundary = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 while (CONSP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 Lisp_Object elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 elt = XCAR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 /* When we get to a boundary, decide whether to truncate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 either before or after it. The lower threshold, MINSIZE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 tells us to truncate after it. If its size pushes past
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 the higher threshold MAXSIZE as well, we truncate before it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 if (NILP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 if (size_so_far > maxsize && maxsize > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 last_boundary = prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 if (size_so_far > minsize && minsize > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 /* Add in the space occupied by this element and its chain link. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 size_so_far += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 if (CONSP (elt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 size_so_far += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 if (STRINGP (XCAR (elt)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 size_so_far += (sizeof (struct Lisp_String) - 1
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
335 + XSTRING_LENGTH (XCAR (elt)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 /* Advance to next element. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 next = XCDR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* If we scanned the whole list, it is short enough; don't change it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 if (NILP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 /* Truncate at the boundary where we decided to truncate. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 if (!NILP (last_boundary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 XCDR (last_boundary) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 return list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
357 DEFUN ("primitive-undo", Fprimitive_undo, 2, 2, 0, /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 Undo COUNT records from the front of the list LIST.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 Return what remains of the list.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
360 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
361 (count, list))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 Lisp_Object next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 int arg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 record_unwind_protect (restore_inside_undo, make_int (inside_undo));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 inside_undo = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 #if 0 /* This is a good feature, but would make undo-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 unable to do what is expected. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 /* If the head of the list is a boundary, it is the boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 preceding this command. Get rid of it and don't count it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 tem = Fcar (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 list = Fcdr (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 CHECK_INT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 arg = XINT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 next = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 GCPRO2 (next, list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 /* Don't let read-only properties interfere with undo. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if (NILP (current_buffer->read_only))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 specbind (Qinhibit_read_only, Qt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 while (arg > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 if (NILP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 else if (!CONSP (list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 goto rotten;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 next = XCAR (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 list = XCDR (list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 /* Exit inner loop at undo boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 if (NILP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 /* Handle an integer by setting point to that value. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 else if (INTP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 BUF_SET_PT (current_buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 bufpos_clip_to_bounds (BUF_BEGV (current_buffer),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 XINT (next),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 BUF_ZV (current_buffer)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 else if (CONSP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 Lisp_Object car = XCAR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 Lisp_Object cdr = XCDR (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 if (EQ (car, Qt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 /* Element (t high . low) records previous modtime. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 Lisp_Object high, low;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 int mod_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 if (!CONSP (cdr)) goto rotten;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 high = XCAR (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 low = XCDR (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 if (!INTP (high) || !INTP (low)) goto rotten;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 mod_time = (XINT (high) << 16) + XINT (low);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 /* If this records an obsolete save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (not matching the actual disk file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 then don't mark unmodified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 if (mod_time != current_buffer->modtime)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 #ifdef CLASH_DETECTION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 Funlock_buffer ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 #endif /* CLASH_DETECTION */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
434 /* may GC under ENERGIZE: */
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
435 Fset_buffer_modified_p (Qnil, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 else if (EXTENTP (car))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 /* Element (extent start end) means that EXTENT was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 detached, and we need to reattach it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 Lisp_Object extent_obj, start, end;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 167
diff changeset
442
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 extent_obj = car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 start = Fcar (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 end = Fcar (Fcdr (cdr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 if (!INTP (start) || !INTP (end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 goto rotten;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 Fset_extent_endpoints (extent_obj, start, end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 else if (EQ (car, Qnil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 /* Element (nil prop val beg . end) is property change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 Lisp_Object beg, end, prop, val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 prop = Fcar (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 cdr = Fcdr (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 val = Fcar (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 cdr = Fcdr (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 beg = Fcar (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 end = Fcdr (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 Fput_text_property (beg, end, prop, val, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 #endif /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 else if (INTP (car) && INTP (cdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 /* Element (BEG . END) means range was inserted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 if (XINT (car) < BUF_BEGV (current_buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 || XINT (cdr) > BUF_ZV (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 error ("Changes to be undone are outside visible portion of buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 /* Set point first thing, so that undoing this undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 does not send point back to where it is now. */
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
477 Fgoto_char (car, Qnil);
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 217
diff changeset
478 Fdelete_region (car, cdr, Qnil);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 else if (STRINGP (car) && INTP (cdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 /* Element (STRING . POS) means STRING was deleted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 Lisp_Object membuf = car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 int pos = XINT (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 if (pos < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 if (-pos < BUF_BEGV (current_buffer) || -pos > BUF_ZV (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 error ("Changes to be undone are outside visible portion of buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 BUF_SET_PT (current_buffer, -pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 Finsert (1, &membuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 if (pos < BUF_BEGV (current_buffer) || pos > BUF_ZV (current_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 error ("Changes to be undone are outside visible portion of buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 BUF_SET_PT (current_buffer, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 /* Insert before markers so that if the mark is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 currently on the boundary of this deletion, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 ends up on the other side of the now-undeleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 text from point. Since undo doesn't even keep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 track of the mark, this isn't really necessary,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 but it may lead to better behavior in certain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 situations.
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 167
diff changeset
506
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 I'm doubtful that this is safe; you could mess
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 up the process-output mark in shell buffers, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 until I hear a compelling reason for this change,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 I'm leaving it out. -jwz
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 /* Finsert_before_markers (1, &membuf); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 Finsert (1, &membuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 BUF_SET_PT (current_buffer, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 goto rotten;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 else if (EXTENTP (next))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 Fdetach_extent (next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 rotten:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 signal_simple_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 ("Something rotten in the state of undo:", next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 arg--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 return unbind_to (speccount, list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 syms_of_undo (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
541 DEFSUBR (Fprimitive_undo);
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
542 DEFSUBR (Fundo_boundary);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 defsymbol (&Qinhibit_read_only, "inhibit-read-only");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 vars_of_undo (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 inside_undo = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 pending_boundary = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 staticpro (&pending_boundary);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 last_undo_buffer = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 staticpro (&last_undo_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 }