diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-04-07 22:09:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-04-07 22:09:23 +0000 |
commit | 61836955225900708449f6220b3e2844d1c62b7d (patch) | |
tree | 2cfb3d925527f2247f189ae93ac78fe84d710552 /src/blockinput.h | |
parent | 0e8ec8d0cc8e4145616d83f499c8a5b9ea95807b (diff) | |
download | emacs-61836955225900708449f6220b3e2844d1c62b7d.tar.gz |
(interrupt_input_blocked): Make this signed int.
Diffstat (limited to 'src/blockinput.h')
-rw-r--r-- | src/blockinput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockinput.h b/src/blockinput.h index 0571a648107..f8b09419b7d 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -43,7 +43,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ interrupt_input_pending to a non-zero value. If that flag is set when input becomes unblocked, UNBLOCK_INPUT will send a new SIGIO. */ -extern unsigned int interrupt_input_blocked; +extern int interrupt_input_blocked; /* Nonzero means an input interrupt has arrived during the current critical section. */ |