From: Gerd Moellmann Date: Mon, 23 Aug 1999 00:11:47 +0000 (+0000) Subject: (command_loop_1): Set beg/end_unchanged per X-Git-Tag: emacs-pretest-21.0.90~7067 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9351ebd055fed8ed472f6e559270384b0a916543;p=emacs.git (command_loop_1): Set beg/end_unchanged per buffer. --- diff --git a/src/keyboard.c b/src/keyboard.c index bfab331eba7..a50322f4256 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1333,8 +1333,10 @@ command_loop_1 () 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;