aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-26 22:07:42 +0000
committerRichard M. Stallman2005-12-26 22:07:42 +0000
commit74338b5eb869852f7305c40f830e1dc5ea19d145 (patch)
tree88d6f9a90d1869a9d3b924a0d348e086c0919e6d /src
parent543e570f73647065278ee79a558748b08c1eb0ef (diff)
downloademacs-74338b5eb869852f7305c40f830e1dc5ea19d145.tar.gz
emacs-74338b5eb869852f7305c40f830e1dc5ea19d145.zip
(last_point_position_window): Declare.
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