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 c1330af273e..ed46141bf11 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -75,12 +75,15 @@ extern Lisp_Object Vthis_command;
75 events until a non-ASCII event is acceptable as input. */ 75 events until a non-ASCII event is acceptable as input. */
76extern Lisp_Object unread_switch_frame; 76extern Lisp_Object unread_switch_frame;
77 77
78/* The value of point when the last command was executed. */ 78/* The value of point when the last command was started. */
79extern int last_point_position; 79extern int last_point_position;
80 80
81/* The buffer that was current when the last command was started. */ 81/* The buffer that was current when the last command was started. */
82extern Lisp_Object last_point_position_buffer; 82extern Lisp_Object last_point_position_buffer;
83 83
84/* The window that was selected when the last command was started. */
85extern Lisp_Object last_point_position_window;
86
84/* Nonzero means ^G can quit instantly */ 87/* Nonzero means ^G can quit instantly */
85extern int immediate_quit; 88extern int immediate_quit;
86 89