From: Richard M. Stallman Date: Mon, 2 Jan 1995 09:18:07 +0000 (+0000) Subject: Use SAVE_MODIFF and BUF_SAVE_MODIFF X-Git-Tag: emacs-19.34~5547 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4c61f38e781aa255b75af18449a5ea8c3b16977d;p=emacs.git Use SAVE_MODIFF and BUF_SAVE_MODIFF instead of direct access to the save_modiff field. --- 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 ()