summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-12-26 22:07:42 +0000
committerRichard M. Stallman <rms@gnu.org>2005-12-26 22:07:42 +0000
commit74338b5eb869852f7305c40f830e1dc5ea19d145 (patch)
tree88d6f9a90d1869a9d3b924a0d348e086c0919e6d /src/commands.h
parent543e570f73647065278ee79a558748b08c1eb0ef (diff)
downloademacs-74338b5eb869852f7305c40f830e1dc5ea19d145.tar.gz
(last_point_position_window): Declare.
Diffstat (limited to 'src/commands.h')
-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;