diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-18 06:14:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-18 06:14:10 +0000 |
commit | 346dae059b9e5d88e44b77839bb10ade640d0f28 (patch) | |
tree | 7b4e4a5e3ccaf37cf3f933aa0ab91eed3ea6242d /src/commands.h | |
parent | eb4ca295101e27b8c66d415342433226055a202b (diff) | |
download | emacs-346dae059b9e5d88e44b77839bb10ade640d0f28.tar.gz emacs-346dae059b9e5d88e44b77839bb10ade640d0f28.tar.bz2 emacs-346dae059b9e5d88e44b77839bb10ade640d0f28.zip |
(unread_command_char): Declared.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 4 |
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; /* List of command events to be re-read, or Qnil. */ extern Lisp_Object Vunread_command_events; +/* Command char event to be re-read, or -1 if none. + Setting this is obsolete, but some things should still check it. */ +extern int unread_command_char; + /* Last command executed by the editor command loop, not counting commands that set the prefix argument. */ |