Mercurial > emacs
annotate src/undo.c @ 9322:0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 04 Oct 1994 16:15:52 +0000 |
| parents | 05b2bd5d5559 |
| children | 323ad02feb1e |
| rev | line source |
|---|---|
| 223 | 1 /* undo handling for GNU Emacs. |
| 7307 | 2 Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc. |
| 223 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 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. | |
| 12 | |
| 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. */ | |
| 20 | |
| 21 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3719
diff
changeset
|
22 #include <config.h> |
| 223 | 23 #include "lisp.h" |
| 24 #include "buffer.h" | |
|
6180
d369907be635
(record_delete): Save last_point_position in the undo record, rather than the
Karl Heuer <kwzh@gnu.org>
parents:
5762
diff
changeset
|
25 #include "commands.h" |
| 223 | 26 |
| 27 /* Last buffer for which undo information was recorded. */ | |
| 28 Lisp_Object last_undo_buffer; | |
| 29 | |
|
3696
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
30 Lisp_Object Qinhibit_read_only; |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
31 |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
32 /* The first time a command records something for undo. |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
33 it also allocates the undo-boundary object |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
34 which will be added to the list at the end of the command. |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
35 This ensures we can't run out of space while trying to make |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
36 an undo-boundary. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
37 Lisp_Object pending_boundary; |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
38 |
| 223 | 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.) */ | |
| 43 | |
| 44 record_insert (beg, length) | |
| 45 Lisp_Object beg, length; | |
| 46 { | |
| 47 Lisp_Object lbeg, lend; | |
| 48 | |
|
2194
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
49 if (EQ (current_buffer->undo_list, Qt)) |
|
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
50 return; |
|
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
51 |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
52 /* Allocate a cons cell to be the undo boundary after this command. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
53 if (NILP (pending_boundary)) |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
54 pending_boundary = Fcons (Qnil, Qnil); |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
55 |
| 223 | 56 if (current_buffer != XBUFFER (last_undo_buffer)) |
| 57 Fundo_boundary (); | |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
58 XSETBUFFER (last_undo_buffer, current_buffer); |
| 223 | 59 |
| 60 if (MODIFF <= current_buffer->save_modified) | |
| 61 record_first_change (); | |
| 62 | |
| 63 /* If this is following another insertion and consecutive with it | |
| 64 in the buffer, combine the two. */ | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
65 if (CONSP (current_buffer->undo_list)) |
| 223 | 66 { |
| 67 Lisp_Object elt; | |
| 68 elt = XCONS (current_buffer->undo_list)->car; | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
69 if (CONSP (elt) |
|
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
70 && INTEGERP (XCONS (elt)->car) |
|
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
71 && INTEGERP (XCONS (elt)->cdr) |
|
1524
91454bf15944
* undo.c (record_insert): Use accessors on BEG and LENGTH.
Jim Blandy <jimb@redhat.com>
parents:
1320
diff
changeset
|
72 && XINT (XCONS (elt)->cdr) == XINT (beg)) |
| 223 | 73 { |
|
1524
91454bf15944
* undo.c (record_insert): Use accessors on BEG and LENGTH.
Jim Blandy <jimb@redhat.com>
parents:
1320
diff
changeset
|
74 XSETINT (XCONS (elt)->cdr, XINT (beg) + XINT (length)); |
| 223 | 75 return; |
| 76 } | |
| 77 } | |
| 78 | |
|
1524
91454bf15944
* undo.c (record_insert): Use accessors on BEG and LENGTH.
Jim Blandy <jimb@redhat.com>
parents:
1320
diff
changeset
|
79 lbeg = beg; |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
80 XSETINT (lend, XINT (beg) + XINT (length)); |
|
1524
91454bf15944
* undo.c (record_insert): Use accessors on BEG and LENGTH.
Jim Blandy <jimb@redhat.com>
parents:
1320
diff
changeset
|
81 current_buffer->undo_list = Fcons (Fcons (lbeg, lend), |
|
91454bf15944
* undo.c (record_insert): Use accessors on BEG and LENGTH.
Jim Blandy <jimb@redhat.com>
parents:
1320
diff
changeset
|
82 current_buffer->undo_list); |
| 223 | 83 } |
| 84 | |
| 85 /* Record that a deletion is about to take place, | |
| 86 for LENGTH characters at location BEG. */ | |
| 87 | |
| 88 record_delete (beg, length) | |
| 89 int beg, length; | |
| 90 { | |
| 91 Lisp_Object lbeg, lend, sbeg; | |
|
7395
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
92 int at_boundary; |
| 223 | 93 |
|
2194
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
94 if (EQ (current_buffer->undo_list, Qt)) |
|
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
95 return; |
|
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
96 |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
97 /* Allocate a cons cell to be the undo boundary after this command. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
98 if (NILP (pending_boundary)) |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
99 pending_boundary = Fcons (Qnil, Qnil); |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
100 |
| 223 | 101 if (current_buffer != XBUFFER (last_undo_buffer)) |
| 102 Fundo_boundary (); | |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
103 XSETBUFFER (last_undo_buffer, current_buffer); |
| 223 | 104 |
|
7395
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
105 at_boundary = (CONSP (current_buffer->undo_list) |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
106 && NILP (XCONS (current_buffer->undo_list)->car)); |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
107 |
| 223 | 108 if (MODIFF <= current_buffer->save_modified) |
| 109 record_first_change (); | |
| 110 | |
| 111 if (point == beg + length) | |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
112 XSETINT (sbeg, -beg); |
| 223 | 113 else |
|
9322
0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9281
diff
changeset
|
114 XSETFASTINT (sbeg, beg); |
|
0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9281
diff
changeset
|
115 XSETFASTINT (lbeg, beg); |
|
0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9281
diff
changeset
|
116 XSETFASTINT (lend, beg + length); |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
117 |
|
7395
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
118 /* If we are just after an undo boundary, and |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
119 point wasn't at start of deleted range, record where it was. */ |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
120 if (at_boundary |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
121 && last_point_position != XFASTINT (sbeg) |
|
99e9c133a752
(record_delete): Record the old point value only right after a boundary.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
122 && current_buffer == XBUFFER (last_point_position_buffer)) |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
123 current_buffer->undo_list |
|
6180
d369907be635
(record_delete): Save last_point_position in the undo record, rather than the
Karl Heuer <kwzh@gnu.org>
parents:
5762
diff
changeset
|
124 = Fcons (make_number (last_point_position), current_buffer->undo_list); |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
125 |
| 223 | 126 current_buffer->undo_list |
| 127 = Fcons (Fcons (Fbuffer_substring (lbeg, lend), sbeg), | |
| 128 current_buffer->undo_list); | |
| 129 } | |
| 130 | |
| 131 /* Record that a replacement is about to take place, | |
| 132 for LENGTH characters at location BEG. | |
| 133 The replacement does not change the number of characters. */ | |
| 134 | |
| 135 record_change (beg, length) | |
| 136 int beg, length; | |
| 137 { | |
| 138 record_delete (beg, length); | |
| 139 record_insert (beg, length); | |
| 140 } | |
| 141 | |
| 142 /* Record that an unmodified buffer is about to be changed. | |
| 143 Record the file modification date so that when undoing this entry | |
| 144 we can tell whether it is obsolete because the file was saved again. */ | |
| 145 | |
| 146 record_first_change () | |
| 147 { | |
| 148 Lisp_Object high, low; | |
|
5762
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
149 |
|
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
150 if (EQ (current_buffer->undo_list, Qt)) |
|
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
151 return; |
|
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
152 |
|
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
153 if (current_buffer != XBUFFER (last_undo_buffer)) |
|
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
154 Fundo_boundary (); |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
155 XSETBUFFER (last_undo_buffer, current_buffer); |
|
5762
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
156 |
|
9322
0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9281
diff
changeset
|
157 XSETFASTINT (high, (current_buffer->modtime >> 16) & 0xffff); |
|
0dceca89f978
(record_delete, record_first_change): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9281
diff
changeset
|
158 XSETFASTINT (low, current_buffer->modtime & 0xffff); |
| 223 | 159 current_buffer->undo_list = Fcons (Fcons (Qt, Fcons (high, low)), current_buffer->undo_list); |
| 160 } | |
| 161 | |
|
1968
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
162 /* Record a change in property PROP (whose old value was VAL) |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
163 for LENGTH characters starting at position BEG in BUFFER. */ |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
164 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
165 record_property_change (beg, length, prop, value, buffer) |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
166 int beg, length; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
167 Lisp_Object prop, value, buffer; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
168 { |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
169 Lisp_Object lbeg, lend, entry; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
170 struct buffer *obuf = current_buffer; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
171 int boundary = 0; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
172 |
|
5762
099857a46901
(record_first_change): Check for buffer-undo-list = t.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
173 if (EQ (XBUFFER (buffer)->undo_list, Qt)) |
|
2194
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
174 return; |
|
886a69457557
(record_property_change, record_delete, record_insert):
Richard M. Stallman <rms@gnu.org>
parents:
1968
diff
changeset
|
175 |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
176 /* Allocate a cons cell to be the undo boundary after this command. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
177 if (NILP (pending_boundary)) |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
178 pending_boundary = Fcons (Qnil, Qnil); |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
179 |
|
1968
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
180 if (!EQ (buffer, last_undo_buffer)) |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
181 boundary = 1; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
182 last_undo_buffer = buffer; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
183 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
184 /* Switch temporarily to the buffer that was changed. */ |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
185 current_buffer = XBUFFER (buffer); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
186 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
187 if (boundary) |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
188 Fundo_boundary (); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
189 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
190 if (MODIFF <= current_buffer->save_modified) |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
191 record_first_change (); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
192 |
|
9281
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
193 XSETINT (lbeg, beg); |
|
05b2bd5d5559
(record_insert, record_delete, record_first_change, record_property_change):
Karl Heuer <kwzh@gnu.org>
parents:
9108
diff
changeset
|
194 XSETINT (lend, beg + length); |
|
1968
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
195 entry = Fcons (Qnil, Fcons (prop, Fcons (value, Fcons (lbeg, lend)))); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
196 current_buffer->undo_list = Fcons (entry, current_buffer->undo_list); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
197 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
198 current_buffer = obuf; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
199 } |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
200 |
| 223 | 201 DEFUN ("undo-boundary", Fundo_boundary, Sundo_boundary, 0, 0, 0, |
| 202 "Mark a boundary between units of undo.\n\ | |
| 203 An undo command will stop at this point,\n\ | |
| 204 but another undo command will undo to the previous boundary.") | |
| 205 () | |
| 206 { | |
| 207 Lisp_Object tem; | |
| 208 if (EQ (current_buffer->undo_list, Qt)) | |
| 209 return Qnil; | |
| 210 tem = Fcar (current_buffer->undo_list); | |
| 485 | 211 if (!NILP (tem)) |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
212 { |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
213 /* One way or another, cons nil onto the front of the undo list. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
214 if (!NILP (pending_boundary)) |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
215 { |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
216 /* If we have preallocated the cons cell to use here, |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
217 use that one. */ |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
218 XCONS (pending_boundary)->cdr = current_buffer->undo_list; |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
219 current_buffer->undo_list = pending_boundary; |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
220 pending_boundary = Qnil; |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
221 } |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
222 else |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
223 current_buffer->undo_list = Fcons (Qnil, current_buffer->undo_list); |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
224 } |
| 223 | 225 return Qnil; |
| 226 } | |
| 227 | |
| 228 /* At garbage collection time, make an undo list shorter at the end, | |
| 229 returning the truncated list. | |
| 230 MINSIZE and MAXSIZE are the limits on size allowed, as described below. | |
| 761 | 231 In practice, these are the values of undo-limit and |
| 232 undo-strong-limit. */ | |
| 223 | 233 |
| 234 Lisp_Object | |
| 235 truncate_undo_list (list, minsize, maxsize) | |
| 236 Lisp_Object list; | |
| 237 int minsize, maxsize; | |
| 238 { | |
| 239 Lisp_Object prev, next, last_boundary; | |
| 240 int size_so_far = 0; | |
| 241 | |
| 242 prev = Qnil; | |
| 243 next = list; | |
| 244 last_boundary = Qnil; | |
| 245 | |
| 246 /* Always preserve at least the most recent undo record. | |
| 241 | 247 If the first element is an undo boundary, skip past it. |
| 248 | |
| 249 Skip, skip, skip the undo, skip, skip, skip the undo, | |
| 970 | 250 Skip, skip, skip the undo, skip to the undo bound'ry. |
| 251 (Get it? "Skip to my Loo?") */ | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
252 if (CONSP (next) && NILP (XCONS (next)->car)) |
| 223 | 253 { |
| 254 /* Add in the space occupied by this element and its chain link. */ | |
| 255 size_so_far += sizeof (struct Lisp_Cons); | |
| 256 | |
| 257 /* Advance to next element. */ | |
| 258 prev = next; | |
| 259 next = XCONS (next)->cdr; | |
| 260 } | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
261 while (CONSP (next) && ! NILP (XCONS (next)->car)) |
| 223 | 262 { |
| 263 Lisp_Object elt; | |
| 264 elt = XCONS (next)->car; | |
| 265 | |
| 266 /* Add in the space occupied by this element and its chain link. */ | |
| 267 size_so_far += sizeof (struct Lisp_Cons); | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
268 if (CONSP (elt)) |
| 223 | 269 { |
| 270 size_so_far += sizeof (struct Lisp_Cons); | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
271 if (STRINGP (XCONS (elt)->car)) |
| 223 | 272 size_so_far += (sizeof (struct Lisp_String) - 1 |
| 273 + XSTRING (XCONS (elt)->car)->size); | |
| 274 } | |
| 275 | |
| 276 /* Advance to next element. */ | |
| 277 prev = next; | |
| 278 next = XCONS (next)->cdr; | |
| 279 } | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
280 if (CONSP (next)) |
| 223 | 281 last_boundary = prev; |
| 282 | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
283 while (CONSP (next)) |
| 223 | 284 { |
| 285 Lisp_Object elt; | |
| 286 elt = XCONS (next)->car; | |
| 287 | |
| 288 /* When we get to a boundary, decide whether to truncate | |
| 289 either before or after it. The lower threshold, MINSIZE, | |
| 290 tells us to truncate after it. If its size pushes past | |
| 291 the higher threshold MAXSIZE as well, we truncate before it. */ | |
| 485 | 292 if (NILP (elt)) |
| 223 | 293 { |
| 294 if (size_so_far > maxsize) | |
| 295 break; | |
| 296 last_boundary = prev; | |
| 297 if (size_so_far > minsize) | |
| 298 break; | |
| 299 } | |
| 300 | |
| 301 /* Add in the space occupied by this element and its chain link. */ | |
| 302 size_so_far += sizeof (struct Lisp_Cons); | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
303 if (CONSP (elt)) |
| 223 | 304 { |
| 305 size_so_far += sizeof (struct Lisp_Cons); | |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
306 if (STRINGP (XCONS (elt)->car)) |
| 223 | 307 size_so_far += (sizeof (struct Lisp_String) - 1 |
| 308 + XSTRING (XCONS (elt)->car)->size); | |
| 309 } | |
| 310 | |
| 311 /* Advance to next element. */ | |
| 312 prev = next; | |
| 313 next = XCONS (next)->cdr; | |
| 314 } | |
| 315 | |
| 316 /* If we scanned the whole list, it is short enough; don't change it. */ | |
| 485 | 317 if (NILP (next)) |
| 223 | 318 return list; |
| 319 | |
| 320 /* Truncate at the boundary where we decided to truncate. */ | |
| 485 | 321 if (!NILP (last_boundary)) |
| 223 | 322 { |
| 323 XCONS (last_boundary)->cdr = Qnil; | |
| 324 return list; | |
| 325 } | |
| 326 else | |
| 327 return Qnil; | |
| 328 } | |
| 329 | |
| 330 DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0, | |
| 331 "Undo N records from the front of the list LIST.\n\ | |
| 332 Return what remains of the list.") | |
|
3719
695181e4bc20
(Fprimitive_undo): Rename arg to N to avoid conflict.
Richard M. Stallman <rms@gnu.org>
parents:
3696
diff
changeset
|
333 (n, list) |
|
695181e4bc20
(Fprimitive_undo): Rename arg to N to avoid conflict.
Richard M. Stallman <rms@gnu.org>
parents:
3696
diff
changeset
|
334 Lisp_Object n, list; |
| 223 | 335 { |
|
7671
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
336 struct gcpro gcpro1, gcpro2; |
|
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
337 Lisp_Object next; |
|
3696
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
338 int count = specpdl_ptr - specpdl; |
|
7671
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
339 register int arg; |
| 223 | 340 #if 0 /* This is a good feature, but would make undo-start |
| 341 unable to do what is expected. */ | |
| 342 Lisp_Object tem; | |
| 343 | |
| 344 /* If the head of the list is a boundary, it is the boundary | |
| 345 preceding this command. Get rid of it and don't count it. */ | |
| 346 tem = Fcar (list); | |
| 485 | 347 if (NILP (tem)) |
| 223 | 348 list = Fcdr (list); |
| 349 #endif | |
| 350 | |
|
7671
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
351 CHECK_NUMBER (n, 0); |
|
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
352 arg = XINT (n); |
|
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
353 next = Qnil; |
|
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
354 GCPRO2 (next, list); |
|
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
355 |
|
3696
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
356 /* Don't let read-only properties interfere with undo. */ |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
357 if (NILP (current_buffer->read_only)) |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
358 specbind (Qinhibit_read_only, Qt); |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
359 |
| 223 | 360 while (arg > 0) |
| 361 { | |
| 362 while (1) | |
| 363 { | |
| 364 next = Fcar (list); | |
| 365 list = Fcdr (list); | |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
366 /* Exit inner loop at undo boundary. */ |
| 485 | 367 if (NILP (next)) |
| 223 | 368 break; |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
369 /* Handle an integer by setting point to that value. */ |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
370 if (INTEGERP (next)) |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
371 SET_PT (clip_to_bounds (BEGV, XINT (next), ZV)); |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
372 else if (CONSP (next)) |
| 223 | 373 { |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
374 Lisp_Object car, cdr; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
375 |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
376 car = Fcar (next); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
377 cdr = Fcdr (next); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
378 if (EQ (car, Qt)) |
| 223 | 379 { |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
380 /* Element (t high . low) records previous modtime. */ |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
381 Lisp_Object high, low; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
382 int mod_time; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
383 |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
384 high = Fcar (cdr); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
385 low = Fcdr (cdr); |
|
3687
54381151027d
(record_delete): Always use XFASTINT on sbeg.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
386 mod_time = (XFASTINT (high) << 16) + XFASTINT (low); |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
387 /* If this records an obsolete save |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
388 (not matching the actual disk file) |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
389 then don't mark unmodified. */ |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
390 if (mod_time != current_buffer->modtime) |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
391 break; |
|
1598
3e9dadf2d13c
* undo.c (Fprimitive_undo): Remove whitespace in front of #ifdef
Jim Blandy <jimb@redhat.com>
parents:
1524
diff
changeset
|
392 #ifdef CLASH_DETECTION |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
393 Funlock_buffer (); |
|
1598
3e9dadf2d13c
* undo.c (Fprimitive_undo): Remove whitespace in front of #ifdef
Jim Blandy <jimb@redhat.com>
parents:
1524
diff
changeset
|
394 #endif /* CLASH_DETECTION */ |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
395 Fset_buffer_modified_p (Qnil); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
396 } |
|
3687
54381151027d
(record_delete): Always use XFASTINT on sbeg.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
397 #ifdef USE_TEXT_PROPERTIES |
|
54381151027d
(record_delete): Always use XFASTINT on sbeg.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
398 else if (EQ (car, Qnil)) |
|
1968
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
399 { |
|
3687
54381151027d
(record_delete): Always use XFASTINT on sbeg.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
400 /* Element (nil prop val beg . end) is property change. */ |
|
1968
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
401 Lisp_Object beg, end, prop, val; |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
402 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
403 prop = Fcar (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
404 cdr = Fcdr (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
405 val = Fcar (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
406 cdr = Fcdr (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
407 beg = Fcar (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
408 end = Fcdr (cdr); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
409 |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
410 Fput_text_property (beg, end, prop, val, Qnil); |
|
de0a0ed7318e
(record_property_change): Typo in last change.
Richard M. Stallman <rms@gnu.org>
parents:
1598
diff
changeset
|
411 } |
|
3687
54381151027d
(record_delete): Always use XFASTINT on sbeg.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
412 #endif /* USE_TEXT_PROPERTIES */ |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
413 else if (INTEGERP (car) && INTEGERP (cdr)) |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
414 { |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
415 /* Element (BEG . END) means range was inserted. */ |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
416 Lisp_Object end; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
417 |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
418 if (XINT (car) < BEGV |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
419 || XINT (cdr) > ZV) |
| 223 | 420 error ("Changes to be undone are outside visible portion of buffer"); |
|
1320
c45c4e0cae7d
(Fprimitive_undo): When undoing an insert, move point and then delete.
Richard M. Stallman <rms@gnu.org>
parents:
1248
diff
changeset
|
421 /* Set point first thing, so that undoing this undo |
|
c45c4e0cae7d
(Fprimitive_undo): When undoing an insert, move point and then delete.
Richard M. Stallman <rms@gnu.org>
parents:
1248
diff
changeset
|
422 does not send point back to where it is now. */ |
|
c45c4e0cae7d
(Fprimitive_undo): When undoing an insert, move point and then delete.
Richard M. Stallman <rms@gnu.org>
parents:
1248
diff
changeset
|
423 Fgoto_char (car); |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
424 Fdelete_region (car, cdr); |
| 223 | 425 } |
|
9108
c0287cefc0f8
(record_insert, truncate_undo_list, Fprimitive_undo): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
7671
diff
changeset
|
426 else if (STRINGP (car) && INTEGERP (cdr)) |
| 223 | 427 { |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
428 /* Element (STRING . POS) means STRING was deleted. */ |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
429 Lisp_Object membuf; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
430 int pos = XINT (cdr); |
| 544 | 431 |
|
1248
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
432 membuf = car; |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
433 if (pos < 0) |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
434 { |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
435 if (-pos < BEGV || -pos > ZV) |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
436 error ("Changes to be undone are outside visible portion of buffer"); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
437 SET_PT (-pos); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
438 Finsert (1, &membuf); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
439 } |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
440 else |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
441 { |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
442 if (pos < BEGV || pos > ZV) |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
443 error ("Changes to be undone are outside visible portion of buffer"); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
444 SET_PT (pos); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
445 |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
446 /* Insert before markers so that if the mark is |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
447 currently on the boundary of this deletion, it |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
448 ends up on the other side of the now-undeleted |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
449 text from point. Since undo doesn't even keep |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
450 track of the mark, this isn't really necessary, |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
451 but it may lead to better behavior in certain |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
452 situations. */ |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
453 Finsert_before_markers (1, &membuf); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
454 SET_PT (pos); |
|
68c77558d34b
(record_delete): Record pos before the deletion.
Richard M. Stallman <rms@gnu.org>
parents:
970
diff
changeset
|
455 } |
| 223 | 456 } |
| 457 } | |
| 458 } | |
| 459 arg--; | |
| 460 } | |
| 461 | |
|
7671
31d444fcae24
(Fprimitive_undo): GCPRO next and list.
Karl Heuer <kwzh@gnu.org>
parents:
7395
diff
changeset
|
462 UNGCPRO; |
|
3696
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
463 return unbind_to (count, list); |
| 223 | 464 } |
| 465 | |
| 466 syms_of_undo () | |
| 467 { | |
|
3696
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
468 Qinhibit_read_only = intern ("inhibit-read-only"); |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
469 staticpro (&Qinhibit_read_only); |
|
aa9310f06c0f
(syms_of_undo): Set up Qinhibit_read_only.
Richard M. Stallman <rms@gnu.org>
parents:
3687
diff
changeset
|
470 |
|
6254
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
471 pending_boundary = Qnil; |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
472 staticpro (&pending_boundary); |
|
a147d798ed0d
(syms_of_undo): staticpro pending_boundary.
Richard M. Stallman <rms@gnu.org>
parents:
6180
diff
changeset
|
473 |
| 223 | 474 defsubr (&Sprimitive_undo); |
| 475 defsubr (&Sundo_boundary); | |
| 476 } |
