diff options
| author | Paul Eggert | 2016-01-26 07:41:41 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-26 07:42:54 -0800 |
| commit | b4c7b510ae46a65fa6a13fa397209c0241386c1f (patch) | |
| tree | 96c5a2908290b96283f7db81e3a8c96cb3a67191 /src/keyboard.c | |
| parent | ad879b7f7e049160c45361fe8a12580801ba035b (diff) | |
| download | emacs-b4c7b510ae46a65fa6a13fa397209c0241386c1f.tar.gz emacs-b4c7b510ae46a65fa6a13fa397209c0241386c1f.zip | |
Remove never-set var handle_user_signal_hook
* src/keyboard.c, src/keyboard.h (handle_user_signal_hook):
Remove never-set var. All uses removed.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 3cddd4119dd..20aa2dbd389 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -7142,9 +7142,6 @@ struct user_signal_info | |||
| 7142 | /* List of user signals. */ | 7142 | /* List of user signals. */ |
| 7143 | static struct user_signal_info *user_signals = NULL; | 7143 | static struct user_signal_info *user_signals = NULL; |
| 7144 | 7144 | ||
| 7145 | /* Function called when handling user signals. */ | ||
| 7146 | void (*handle_user_signal_hook) (int); | ||
| 7147 | |||
| 7148 | void | 7145 | void |
| 7149 | add_user_signal (int sig, const char *name) | 7146 | add_user_signal (int sig, const char *name) |
| 7150 | { | 7147 | { |
| @@ -7193,8 +7190,6 @@ handle_user_signal (int sig) | |||
| 7193 | } | 7190 | } |
| 7194 | 7191 | ||
| 7195 | p->npending++; | 7192 | p->npending++; |
| 7196 | if (handle_user_signal_hook) | ||
| 7197 | (*handle_user_signal_hook) (sig); | ||
| 7198 | #ifdef USABLE_SIGIO | 7193 | #ifdef USABLE_SIGIO |
| 7199 | if (interrupt_input) | 7194 | if (interrupt_input) |
| 7200 | handle_input_available_signal (sig); | 7195 | handle_input_available_signal (sig); |