summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
events until a non-ASCII event is acceptable as input. */
extern Lisp_Object unread_switch_frame;
-/* The value of point when the last command was executed. */
+/* The value of point when the last command was started. */
extern int last_point_position;
/* The buffer that was current when the last command was started. */
extern Lisp_Object last_point_position_buffer;
+/* The window that was selected when the last command was started. */
+extern Lisp_Object last_point_position_window;
+
/* Nonzero means ^G can quit instantly */
extern int immediate_quit;