diff options
| author | Jim Blandy | 1992-09-22 04:28:52 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-22 04:28:52 +0000 |
| commit | 0ca96cef67f9ae39f047d684c9eb59ba91a63c9a (patch) | |
| tree | 4a6dbf631ea108d11ed800b135459f87c4f4221a | |
| parent | eac595cad2dd3ede8ff1ea6a3dc89df9ce8d2f0a (diff) | |
| download | emacs-0ca96cef67f9ae39f047d684c9eb59ba91a63c9a.tar.gz emacs-0ca96cef67f9ae39f047d684c9eb59ba91a63c9a.zip | |
* keyboard.h (num_nonmacro_input_chars): Added extern declaration
for this.
| -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. */ | |||
| 20 | /* Total number of times read_char has returned. */ | 20 | /* Total number of times read_char has returned. */ |
| 21 | extern int num_input_chars; | 21 | extern int num_input_chars; |
| 22 | 22 | ||
| 23 | /* Total number of times read_char has returned, outside of macros. */ | ||
| 24 | extern int num_nonmacro_input_chars; | ||
| 25 | |||
| 23 | /* Nonzero means polling for input is temporarily suppresed. */ | 26 | /* Nonzero means polling for input is temporarily suppresed. */ |
| 24 | extern int poll_suppress_count; | 27 | extern int poll_suppress_count; |
| 25 | 28 | ||