aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-02-14 14:25:36 +0000
committerRichard M. Stallman1995-02-14 14:25:36 +0000
commit91c049d44f5d3d5aa79658a22069b5d501416fa2 (patch)
tree361d42162b41fc2b1c8ab2b555d3597975919fc4 /src
parent61cbef47fec3343888dd6ea82a7431242afaddfc (diff)
downloademacs-91c049d44f5d3d5aa79658a22069b5d501416fa2.tar.gz
emacs-91c049d44f5d3d5aa79658a22069b5d501416fa2.zip
(input_poll_signal): Add ignored argument.
(interrupt_signal): Likewise.
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. */