From: Karl Heuer Date: Sat, 5 Mar 1994 03:58:45 +0000 (+0000) Subject: (command_loop_1): Fix misplaced assignment of last_point_position. X-Git-Tag: emacs-19.34~9648 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8746da9580a4465ae1e5e038f4afca7763458ea1;p=emacs.git (command_loop_1): Fix misplaced assignment of last_point_position. --- diff --git a/src/keyboard.c b/src/keyboard.c index 42aaf82a105..24988923e70 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -909,7 +909,6 @@ command_loop_1 () no_redisplay = 0; this_command_key_count = 0; last_command = this_command; - last_point_position = PT; /* Make sure this hook runs after commands that get errors and throw to top level. */ @@ -1035,6 +1034,7 @@ command_loop_1 () prev_buffer = current_buffer; prev_modiff = MODIFF; + last_point_position = PT; /* Execute the command. */