diff options
| author | Karl Heuer | 1994-04-08 05:57:55 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-08 05:57:55 +0000 |
| commit | 026b8c1e031fcfd5a6158e53a40f942dd3e6753b (patch) | |
| tree | 8a82c7a25f861be95003366dce68f12b536c3abb /src | |
| parent | fcaa76656721d78c450a2f58d0d11af086e7c4ec (diff) | |
| download | emacs-026b8c1e031fcfd5a6158e53a40f942dd3e6753b.tar.gz emacs-026b8c1e031fcfd5a6158e53a40f942dd3e6753b.zip | |
(enum event_kind): Add buffer_switch_event.
Diffstat (limited to 'src')
| -rw-r--r-- | src/termhooks.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index e20a8fea5ed..6d8c19ae441 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -190,7 +190,7 @@ extern int (*read_socket_hook) (); | |||
| 190 | extern int (*frame_up_to_date_hook) (); | 190 | extern int (*frame_up_to_date_hook) (); |
| 191 | 191 | ||
| 192 | /* Expedient hack: only provide the below definitions to files that | 192 | /* Expedient hack: only provide the below definitions to files that |
| 193 | are prepared to handle lispy things. XINT is defined iff lisp.h | 193 | are prepared to handle lispy things. CONSP is defined iff lisp.h |
| 194 | has been included before this file. */ | 194 | has been included before this file. */ |
| 195 | #ifdef CONSP | 195 | #ifdef CONSP |
| 196 | 196 | ||
| @@ -246,6 +246,7 @@ enum event_kind | |||
| 246 | selection_request_event, /* Another X client wants a selection from us. | 246 | selection_request_event, /* Another X client wants a selection from us. |
| 247 | See `struct selection_event'. */ | 247 | See `struct selection_event'. */ |
| 248 | selection_clear_event, /* Another X client cleared our selection. */ | 248 | selection_clear_event, /* Another X client cleared our selection. */ |
| 249 | buffer_switch_event, /* A process filter has switched buffers. */ | ||
| 249 | delete_window_event /* An X client said "delete this window". */ | 250 | delete_window_event /* An X client said "delete this window". */ |
| 250 | }; | 251 | }; |
| 251 | 252 | ||