diff options
| author | Richard M. Stallman | 1995-01-02 09:18:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-02 09:18:07 +0000 |
| commit | 4c61f38e781aa255b75af18449a5ea8c3b16977d (patch) | |
| tree | 222858b73ffd222007fe9751a25a0f3b81c1ad93 /src | |
| parent | 1e158d254d630624716a81dfa66707509de12cb7 (diff) | |
| download | emacs-4c61f38e781aa255b75af18449a5ea8c3b16977d.tar.gz emacs-4c61f38e781aa255b75af18449a5ea8c3b16977d.zip | |
Use SAVE_MODIFF and BUF_SAVE_MODIFF
instead of direct access to the save_modiff field.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 () | |||
| 1197 | < MODIFF) | 1197 | < MODIFF) |
| 1198 | || (XFASTINT (XWINDOW (selected_window)->last_point) | 1198 | || (XFASTINT (XWINDOW (selected_window)->last_point) |
| 1199 | != PT) | 1199 | != PT) |
| 1200 | || MODIFF <= current_buffer->save_modified | 1200 | || MODIFF <= SAVE_MODIFF |
| 1201 | || windows_or_buffers_changed | 1201 | || windows_or_buffers_changed |
| 1202 | || !EQ (current_buffer->selective_display, Qnil) | 1202 | || !EQ (current_buffer->selective_display, Qnil) |
| 1203 | || detect_input_pending () | 1203 | || detect_input_pending () |