From 4c61f38e781aa255b75af18449a5ea8c3b16977d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 2 Jan 1995 09:18:07 +0000 Subject: [PATCH] Use SAVE_MODIFF and BUF_SAVE_MODIFF instead of direct access to the save_modiff field. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index d77c30e35e3..2f69514dc24 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1197,7 +1197,7 @@ command_loop_1 () < MODIFF) || (XFASTINT (XWINDOW (selected_window)->last_point) != PT) - || MODIFF <= current_buffer->save_modified + || MODIFF <= SAVE_MODIFF || windows_or_buffers_changed || !EQ (current_buffer->selective_display, Qnil) || detect_input_pending () -- 2.39.5