Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
91e25f5e
Commit
91e25f5e
authored
Dec 26, 2005
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Depend on window.h.
(record_point): Save old point from the correct window.
parent
bb0e1d19
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
src/ChangeLog
src/ChangeLog
+11
-0
src/undo.c
src/undo.c
+12
-4
No files found.
src/ChangeLog
View file @
91e25f5e
2005-12-26 Richard M. Stallman <rms@gnu.org>
* undo.c: Depend on window.h.
(record_point): Save old point from the correct window.
* keyboard.c (last_point_position_window): New variable.
(command_loop_1): Set last_point_position_window.
(syms_of_keyboard): Init it.
* Makefile.in (undo.o): Depend on window.h.
2005-12-25 Richard M. Stallman <rms@gnu.org>
* eval.c (un_autoload): Expect (0 . OFEATURES) in Vautoload_queue
...
...
src/undo.c
View file @
91e25f5e
...
...
@@ -24,6 +24,7 @@ Boston, MA 02110-1301, USA. */
#include "lisp.h"
#include "buffer.h"
#include "commands.h"
#include "window.h"
/* Limits controlling how much undo information to keep. */
...
...
@@ -100,12 +101,19 @@ record_point (pt)
/* If we are just after an undo boundary, and
point wasn't at start of deleted range, record where it was. */
if
(
at_boundary
&&
last_point_position
!=
pt
/* If we're called from batch mode, this could be nil. */
&&
BUFFERP
(
last_point_position_buffer
)
/* If we're called from batch mode, this could be nil. */
&&
current_buffer
==
XBUFFER
(
last_point_position_buffer
))
current_buffer
->
undo_list
=
Fcons
(
make_number
(
last_point_position
),
current_buffer
->
undo_list
);
{
/* If we have switched windows, use the point value
from the window we are in. */
if
(
!
EQ
(
last_point_position_window
,
selected_window
))
last_point_position
=
marker_position
(
XWINDOW
(
selected_window
)
->
pointm
);
if
(
last_point_position
!=
pt
)
current_buffer
->
undo_list
=
Fcons
(
make_number
(
last_point_position
),
current_buffer
->
undo_list
);
}
}
/* Record an insertion that just happened or is about to happen,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment