diff options
| author | YAMAMOTO Mitsuharu | 2015-12-31 11:17:35 +0900 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2015-12-31 11:17:35 +0900 |
| commit | 6ee327d8a10047c1717358cc179ed8d1fb3389eb (patch) | |
| tree | 7ba3a2406a7faafe06637a6823bb239d8ca782e9 /src/keyboard.h | |
| parent | 47580e0d72f53c2fff23cb8edf1487da76e87744 (diff) | |
| download | emacs-6ee327d8a10047c1717358cc179ed8d1fb3389eb.tar.gz emacs-6ee327d8a10047c1717358cc179ed8d1fb3389eb.zip | |
Add handle_user_signal_hook
* src/keyboard.h (handle_user_signal_hook): New declaration.
* src/keyboard.c (handle_user_signal_hook): New variable.
(handle_user_signal): Call it.
Diffstat (limited to 'src/keyboard.h')
| -rw-r--r-- | src/keyboard.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 890d24eb2d9..4558bd61414 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -415,6 +415,8 @@ extern void unuse_menu_items (void); | |||
| 415 | #define EVENT_HEAD_KIND(event_head) \ | 415 | #define EVENT_HEAD_KIND(event_head) \ |
| 416 | (Fget ((event_head), Qevent_kind)) | 416 | (Fget ((event_head), Qevent_kind)) |
| 417 | 417 | ||
| 418 | extern void (*handle_user_signal_hook) (int); | ||
| 419 | |||
| 418 | /* True while doing kbd input. */ | 420 | /* True while doing kbd input. */ |
| 419 | extern bool waiting_for_input; | 421 | extern bool waiting_for_input; |
| 420 | 422 | ||