aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-06-09 03:04:26 +0000
committerKarl Heuer1995-06-09 03:04:26 +0000
commit334a398c80450ac43b2d553d6e408ba3fb32429d (patch)
tree1c2f4b41d1233c6f7f8c0a5dbabbf9247da63c00 /src
parent6c7178b9956cb69bb53b5b2c84678ea9f503fe7d (diff)
downloademacs-334a398c80450ac43b2d553d6e408ba3fb32429d.tar.gz
emacs-334a398c80450ac43b2d553d6e408ba3fb32429d.zip
(struct kboard): New member Vlast_command.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h
index 8b55b0ac878..1498880b84e 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -66,6 +66,10 @@ struct kboard
66 { 66 {
67 KBOARD *next_kboard; 67 KBOARD *next_kboard;
68 68
69 /* Last command executed by the editor command loop, not counting
70 commands that set the prefix argument. */
71 Lisp_Object Vlast_command;
72
69 /* The prefix argument for the next command, in raw form. */ 73 /* The prefix argument for the next command, in raw form. */
70 Lisp_Object Vprefix_arg; 74 Lisp_Object Vprefix_arg;
71 75