aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-06-09 03:04:43 +0000
committerKarl Heuer1995-06-09 03:04:43 +0000
commit185fd0ecec98ff494d24b8e96cd1c165e3313931 (patch)
tree364e7afb8f7ae49384b00a1019da7581b2dc67c4 /src
parent334a398c80450ac43b2d553d6e408ba3fb32429d (diff)
downloademacs-185fd0ecec98ff494d24b8e96cd1c165e3313931.tar.gz
emacs-185fd0ecec98ff494d24b8e96cd1c165e3313931.zip
(last_command): Var deleted; now part of struct kboard.
Diffstat (limited to 'src')
-rw-r--r--src/commands.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/commands.h b/src/commands.h
index 57de2ccae41..5ee27cc8c94 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -52,14 +52,9 @@ extern Lisp_Object Vunread_command_events;
52 Setting this is obsolete, but some things should still check it. */ 52 Setting this is obsolete, but some things should still check it. */
53extern int unread_command_char; 53extern int unread_command_char;
54 54
55/* Last command executed by the editor command loop, not counting
56 commands that set the prefix argument. */
57
58extern Lisp_Object last_command;
59
60/* The command being executed by the command loop. 55/* The command being executed by the command loop.
61 Commands may set this, and the value set will be copied into last_command 56 Commands may set this, and the value set will be copied into
62 instead of the actual command. */ 57 current_kboard->Vlast_command instead of the actual command. */
63extern Lisp_Object this_command; 58extern Lisp_Object this_command;
64 59
65/* If not Qnil, this is a switch-frame event which we decided to put 60/* If not Qnil, this is a switch-frame event which we decided to put
@@ -71,9 +66,6 @@ extern Lisp_Object this_command;
71 events until a non-ASCII event is acceptable as input. */ 66 events until a non-ASCII event is acceptable as input. */
72extern Lisp_Object unread_switch_frame; 67extern Lisp_Object unread_switch_frame;
73 68
74/* Previous command symbol found here for comparison */
75extern Lisp_Object last_command;
76
77/* The value of point when the last command was executed. */ 69/* The value of point when the last command was executed. */
78extern int last_point_position; 70extern int last_point_position;
79 71