From 103dcb3822c9475fcf7265fbc83bda24ebe199cd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 25 Jul 1995 02:18:58 +0000 Subject: [PATCH] (Fprimitive_undo): Don't end inner loop just because a previous-modtime doesn't match any more. --- src/undo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.2