aboutsummaryrefslogtreecommitdiffstats
path: root/src/blockinput.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/blockinput.h')
-rw-r--r--src/blockinput.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blockinput.h b/src/blockinput.h
index 70822e29be7..6dc22c6f5dd 100644
--- a/src/blockinput.h
+++ b/src/blockinput.h
@@ -1,5 +1,5 @@
1/* blockinput.h - interface to blocking complicated interrupt-driven input. 1/* blockinput.h - interface to blocking complicated interrupt-driven input.
2 Copyright (C) 1989, 1993, 2001-2012 Free Software Foundation, Inc. 2 Copyright (C) 1989, 1993, 2001-2013 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -67,7 +67,7 @@ extern void unblock_input_to (int);
67BLOCKINPUT_INLINE bool 67BLOCKINPUT_INLINE bool
68input_blocked_p (void) 68input_blocked_p (void)
69{ 69{
70 return 0 < interrupt_input_blocked; 70 return interrupt_input_blocked > 0;
71} 71}
72 72
73INLINE_HEADER_END 73INLINE_HEADER_END