summaryrefslogtreecommitdiff
path: root/src/undo.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-07-25 02:18:58 +0000
committerRichard M. Stallman <rms@gnu.org>1995-07-25 02:18:58 +0000
commit103dcb3822c9475fcf7265fbc83bda24ebe199cd (patch)
tree3a67b9d515c9f13b3dbe60a5f4e73ea6aca66e41 /src/undo.c
parentf8a87498023d26b09a8ceaa97603f96ffc84736a (diff)
downloademacs-103dcb3822c9475fcf7265fbc83bda24ebe199cd.tar.gz
emacs-103dcb3822c9475fcf7265fbc83bda24ebe199cd.tar.bz2
emacs-103dcb3822c9475fcf7265fbc83bda24ebe199cd.zip
(Fprimitive_undo): Don't end inner loop
just because a previous-modtime doesn't match any more.
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c
index 2f37bae8477..efa19107419 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -397,7 +397,7 @@ Return what remains of the list.")
(not matching the actual disk file)
then don't mark unmodified. */
if (mod_time != base_buffer->modtime)
- break;
+ continue;
#ifdef CLASH_DETECTION
Funlock_buffer ();
#endif /* CLASH_DETECTION */