diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-22 04:28:52 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-22 04:28:52 +0000 |
commit | d96915e4b49df52b48e14db4a107993dad6352a5 (patch) | |
tree | 03606caa8d5e147f58f638e87b7c8279a642f43b /src/keyboard.h | |
parent | 513d5499dee13c0dc827f6e53ffefadd7736005d (diff) | |
download | emacs-d96915e4b49df52b48e14db4a107993dad6352a5.tar.gz |
* keyboard.h (num_nonmacro_input_chars): Added extern declaration
for this.
Diffstat (limited to 'src/keyboard.h')
-rw-r--r-- | src/keyboard.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 66e7e10eec3..2c1285b165a 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -20,6 +20,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Total number of times read_char has returned. */ extern int num_input_chars; +/* Total number of times read_char has returned, outside of macros. */ +extern int num_nonmacro_input_chars; + /* Nonzero means polling for input is temporarily suppresed. */ extern int poll_suppress_count; |