diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-04 23:41:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-04 23:41:00 +0000 |
commit | 31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch) | |
tree | 4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/commands.h | |
parent | c01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff) | |
download | emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.tar.gz |
Change defvar_int def and vars to use EMACS_INT instead of just 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 0494478541c..d830573b58b 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,7 @@ 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; +extern EMACS_INT unread_command_char; /* The command being executed by the command loop. Commands may set this, and the value set will be copied into |