# HG changeset patch # User Richard M. Stallman # Date 733307254 0 # Node ID 465732c007f4918ba4d16e38cb3006991bfacb13 # Parent f51bd667640943df08dc294da510548c288bbdd8 (command_loop_1): Clear force_start of selected_window after reading each key sequence. diff -r f51bd6676409 -r 465732c007f4 src/keyboard.c --- a/src/keyboard.c Sun Mar 28 07:32:08 1993 +0000 +++ b/src/keyboard.c Sun Mar 28 08:27:34 1993 +0000 @@ -957,6 +957,11 @@ last_command_char = keybuf[i - 1]; + /* If the previous command tried to force a specific window-start, + forget about that, in case this command moves point far away + from that position. */ + XWINDOW (selected_window)->force_start = Qnil; + cmd = read_key_sequence_cmd; if (!NILP (Vexecuting_macro)) {