aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-07-18 06:14:10 +0000
committerRichard M. Stallman1994-07-18 06:14:10 +0000
commit346dae059b9e5d88e44b77839bb10ade640d0f28 (patch)
tree7b4e4a5e3ccaf37cf3f933aa0ab91eed3ea6242d
parenteb4ca295101e27b8c66d415342433226055a202b (diff)
downloademacs-346dae059b9e5d88e44b77839bb10ade640d0f28.tar.gz
emacs-346dae059b9e5d88e44b77839bb10ade640d0f28.zip
(unread_command_char): Declared.
-rw-r--r--src/commands.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h
index 788f1f9c047..57de2ccae41 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -48,6 +48,10 @@ extern Lisp_Object last_nonmenu_event;
48/* List of command events to be re-read, or Qnil. */ 48/* List of command events to be re-read, or Qnil. */
49extern Lisp_Object Vunread_command_events; 49extern Lisp_Object Vunread_command_events;
50 50
51/* Command char event to be re-read, or -1 if none.
52 Setting this is obsolete, but some things should still check it. */
53extern int unread_command_char;
54
51/* Last command executed by the editor command loop, not counting 55/* Last command executed by the editor command loop, not counting
52 commands that set the prefix argument. */ 56 commands that set the prefix argument. */
53 57