aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commands.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h
index a33b52db0c0..788f1f9c047 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -70,9 +70,12 @@ extern Lisp_Object unread_switch_frame;
70/* Previous command symbol found here for comparison */ 70/* Previous command symbol found here for comparison */
71extern Lisp_Object last_command; 71extern Lisp_Object last_command;
72 72
73/* Previous value of point */ 73/* The value of point when the last command was executed. */
74extern int last_point_position; 74extern int last_point_position;
75 75
76/* The buffer that was current when the last command was started. */
77extern Lisp_Object last_point_position_buffer;
78
76/* Nonzero means ^G can quit instantly */ 79/* Nonzero means ^G can quit instantly */
77extern int immediate_quit; 80extern int immediate_quit;
78 81