diff options
| author | Dave Love | 2002-11-22 12:23:29 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-22 12:23:29 +0000 |
| commit | 5598c32e918827e8a956b145bbc4fb4b0445f657 (patch) | |
| tree | f02351362093fa47cd92de9b613e8a5e6c7428dc /src | |
| parent | 0c2338d8195e8e2eb4b14b3ba35d2e15ccbb0504 (diff) | |
| download | emacs-5598c32e918827e8a956b145bbc4fb4b0445f657.tar.gz emacs-5598c32e918827e8a956b145bbc4fb4b0445f657.zip | |
(interrupt_signal): Provide forward declaration.
(kbd_buffer_store_event): Don't declare interrupt_signal.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 10 | ||||
| -rw-r--r-- | src/keyboard.c | 2 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-11-21 Richard M. Stallman <rms@gnu.org> | 11 | 2002-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)); | |||
| 706 | static Lisp_Object apply_modifiers P_ ((int, Lisp_Object)); | 706 | static Lisp_Object apply_modifiers P_ ((int, Lisp_Object)); |
| 707 | static void clear_event P_ ((struct input_event *)); | 707 | static void clear_event P_ ((struct input_event *)); |
| 708 | static void any_kboard_state P_ ((void)); | 708 | static void any_kboard_state P_ ((void)); |
| 709 | static 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; |