From: Richard M. Stallman Date: Tue, 25 Jul 1995 02:18:58 +0000 (+0000) Subject: (Fprimitive_undo): Don't end inner loop X-Git-Tag: emacs-19.34~3210 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=103dcb3822c9475fcf7265fbc83bda24ebe199cd;p=emacs.git (Fprimitive_undo): Don't end inner loop just because a previous-modtime doesn't match any more. --- 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 */