diff options
author | Jim Blandy <jimb@redhat.com> | 1992-02-11 00:46:32 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-02-11 00:46:32 +0000 |
commit | 62ae71c2e8a3e53b1b06aed0e7e8a7ffbef88979 (patch) | |
tree | 05451fa4cdd809300a113e79479a3112c40acbe8 /src/undo.c | |
parent | a9764248b799e25c9d3d7143b28315182debe4f5 (diff) | |
download | emacs-62ae71c2e8a3e53b1b06aed0e7e8a7ffbef88979.tar.gz emacs-62ae71c2e8a3e53b1b06aed0e7e8a7ffbef88979.tar.bz2 emacs-62ae71c2e8a3e53b1b06aed0e7e8a7ffbef88979.zip |
*** empty log message ***
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index 852771764f1..06abcbadd3e 100644 --- a/src/undo.c +++ b/src/undo.c @@ -307,7 +307,15 @@ Return what remains of the list.") if (pos < BEGV || pos > ZV) error ("Changes to be undone are outside visible portion of buffer"); SET_PT (pos); - Finsert (1, &membuf); + + /* Insert before markers so that if the mark is + currently on the boundary of this deletion, it + ends up on the other side of the now-undeleted + text from point. Since undo doesn't even keep + track of the mark, this isn't really necessary, + but it may lead to better behavior in certain + situations. */ + Finsert_before_markers (1, &membuf); SET_PT (pos); } } |