aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 495b36f6f9b..5b1b408cc26 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1262,7 +1262,8 @@ int polling_for_input;
1262 so as to handle a C-g if it comces in. */ 1262 so as to handle a C-g if it comces in. */
1263 1263
1264SIGTYPE 1264SIGTYPE
1265input_poll_signal () 1265input_poll_signal (signalnum) /* If we don't have an argument, */
1266 int signalnum; /* some compilers complain in signal calls. */
1266{ 1267{
1267 if (interrupt_input_blocked == 0 1268 if (interrupt_input_blocked == 0
1268 && !waiting_for_input) 1269 && !waiting_for_input)
@@ -5806,7 +5807,8 @@ clear_waiting_for_input ()
5806 If quit-flag is already non-nil, it stops the job right away. */ 5807 If quit-flag is already non-nil, it stops the job right away. */
5807 5808
5808SIGTYPE 5809SIGTYPE
5809interrupt_signal () 5810interrupt_signal (signalnum) /* If we don't have an argument, */
5811 int signalnum; /* some compilers complain in signal calls. */
5810{ 5812{
5811 char c; 5813 char c;
5812 /* Must preserve main program's value of errno. */ 5814 /* Must preserve main program's value of errno. */