aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-03-05 03:58:45 +0000
committerKarl Heuer1994-03-05 03:58:45 +0000
commit8746da9580a4465ae1e5e038f4afca7763458ea1 (patch)
tree013c53cb4fc92842bf0013c776f2705468564df3 /src
parentc47fae76cd24ee57b09ec67e4853088978b7461d (diff)
downloademacs-8746da9580a4465ae1e5e038f4afca7763458ea1.tar.gz
emacs-8746da9580a4465ae1e5e038f4afca7763458ea1.zip
(command_loop_1): Fix misplaced assignment of last_point_position.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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 ()
909 no_redisplay = 0; 909 no_redisplay = 0;
910 this_command_key_count = 0; 910 this_command_key_count = 0;
911 last_command = this_command; 911 last_command = this_command;
912 last_point_position = PT;
913 912
914 /* Make sure this hook runs after commands that get errors and 913 /* Make sure this hook runs after commands that get errors and
915 throw to top level. */ 914 throw to top level. */
@@ -1035,6 +1034,7 @@ command_loop_1 ()
1035 1034
1036 prev_buffer = current_buffer; 1035 prev_buffer = current_buffer;
1037 prev_modiff = MODIFF; 1036 prev_modiff = MODIFF;
1037 last_point_position = PT;
1038 1038
1039 /* Execute the command. */ 1039 /* Execute the command. */
1040 1040