aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/keyboard.c2
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1638bfcb505..5d5f68aecc4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12002-11-22 Dave Love <fx@gnu.org>
2
3 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
4
5 * keyboard.c (interrupt_signal): Provide forward declaration.
6 (kbd_buffer_store_event): Don't declare interrupt_signal.
7
8 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C
9 arglist.
10
12002-11-21 Richard M. Stallman <rms@gnu.org> 112002-11-21 Richard M. Stallman <rms@gnu.org>
2 12
3 * eval.c (interactive_p): Skip any number of bytecode 13 * eval.c (interactive_p): Skip any number of bytecode
diff --git a/src/keyboard.c b/src/keyboard.c
index fd726a5a254..f322ed87632 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -706,6 +706,7 @@ static void restore_getcjmp P_ ((jmp_buf));
706static Lisp_Object apply_modifiers P_ ((int, Lisp_Object)); 706static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
707static void clear_event P_ ((struct input_event *)); 707static void clear_event P_ ((struct input_event *));
708static void any_kboard_state P_ ((void)); 708static void any_kboard_state P_ ((void));
709static SIGTYPE interrupt_signal P_ ((int signalnum));
709 710
710/* Nonzero means don't try to suspend even if the operating system seems 711/* Nonzero means don't try to suspend even if the operating system seems
711 to support it. */ 712 to support it. */
@@ -3466,7 +3467,6 @@ kbd_buffer_store_event (event)
3466 3467
3467 if (c == quit_char) 3468 if (c == quit_char)
3468 { 3469 {
3469 static SIGTYPE interrupt_signal P_ ((int));
3470#ifdef MULTI_KBOARD 3470#ifdef MULTI_KBOARD
3471 KBOARD *kb; 3471 KBOARD *kb;
3472 struct input_event *sp; 3472 struct input_event *sp;