diff options
author | Jim Blandy <jimb@redhat.com> | 1992-10-31 04:55:35 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-10-31 04:55:35 +0000 |
commit | 3cfd58255d3533aef3c6cdba5d0bb29788aaf12b (patch) | |
tree | 532b4211cfeb39b7486114302f1f366f2e733d3d /src/commands.h | |
parent | d9da9451b5f0899ba1656d66ff8b73efb87228ad (diff) | |
download | emacs-3cfd58255d3533aef3c6cdba5d0bb29788aaf12b.tar.gz |
* commands.h (unread_command_char): Declare this to be a
Lisp_Object, not an int.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h index fb9c7e56b25..ee4cb79e1ea 100644 --- a/src/commands.h +++ b/src/commands.h @@ -50,7 +50,7 @@ extern Lisp_Object last_command_char; extern Lisp_Object last_nonmenu_event; /* Command character to be re-read, or -1 */ -extern int unread_command_char; +extern Lisp_Object unread_command_char; /* Previous command symbol found here for comparison */ extern Lisp_Object last_command; |