Mercurial > emacs
diff src/keyboard.c @ 25374:f4c741d61d57
(command_loop_1): Set beg/end_unchanged per
buffer.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 23 Aug 1999 00:11:47 +0000 |
| parents | 9d8bd4841e77 |
| children | 79574d91e925 |
line wrap: on
line diff
--- a/src/keyboard.c Mon Aug 23 00:11:45 1999 +0000 +++ b/src/keyboard.c Mon Aug 23 00:11:47 1999 +0000 @@ -1333,8 +1333,10 @@ update the whole window properly. */ if (!NILP (XWINDOW (selected_window)->force_start)) { + struct buffer *b; XWINDOW (selected_window)->force_start = Qnil; - beg_unchanged = end_unchanged = 0; + b = XBUFFER (XWINDOW (selected_window)->buffer); + BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0; } cmd = read_key_sequence_cmd;
