diff options
Diffstat (limited to 'src/keyboard.h')
| -rw-r--r-- | src/keyboard.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 534e2018a52..0ce6d184482 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -248,8 +248,6 @@ extern ptrdiff_t this_command_key_count; | |||
| 248 | generated by the next character. */ | 248 | generated by the next character. */ |
| 249 | extern Lisp_Object internal_last_event_frame; | 249 | extern Lisp_Object internal_last_event_frame; |
| 250 | 250 | ||
| 251 | extern Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook; | ||
| 252 | |||
| 253 | /* This holds a Lisp vector that holds the properties of a single | 251 | /* This holds a Lisp vector that holds the properties of a single |
| 254 | menu item while decoding it in parse_menu_item. | 252 | menu item while decoding it in parse_menu_item. |
| 255 | Using a Lisp vector to hold this information while we decode it | 253 | Using a Lisp vector to hold this information while we decode it |
| @@ -387,25 +385,10 @@ extern void unuse_menu_items (void); | |||
| 387 | #define POSN_INBUFFER_P(posn) (NILP (POSN_STRING (posn))) | 385 | #define POSN_INBUFFER_P(posn) (NILP (POSN_STRING (posn))) |
| 388 | #define POSN_BUFFER_POSN(posn) (Fnth (make_number (5), (posn))) | 386 | #define POSN_BUFFER_POSN(posn) (Fnth (make_number (5), (posn))) |
| 389 | 387 | ||
| 390 | /* Some of the event heads. */ | ||
| 391 | extern Lisp_Object Qswitch_frame; | ||
| 392 | |||
| 393 | /* Properties on event heads. */ | ||
| 394 | extern Lisp_Object Qevent_kind; | ||
| 395 | |||
| 396 | /* The values of Qevent_kind properties. */ | ||
| 397 | extern Lisp_Object Qmouse_click; | ||
| 398 | |||
| 399 | extern Lisp_Object Qhelp_echo; | ||
| 400 | |||
| 401 | /* Getting the kind of an event head. */ | 388 | /* Getting the kind of an event head. */ |
| 402 | #define EVENT_HEAD_KIND(event_head) \ | 389 | #define EVENT_HEAD_KIND(event_head) \ |
| 403 | (Fget ((event_head), Qevent_kind)) | 390 | (Fget ((event_head), Qevent_kind)) |
| 404 | 391 | ||
| 405 | /* Symbols to use for non-text mouse positions. */ | ||
| 406 | extern Lisp_Object Qmode_line, Qvertical_line, Qheader_line; | ||
| 407 | extern Lisp_Object Qright_divider, Qbottom_divider; | ||
| 408 | |||
| 409 | /* True while doing kbd input. */ | 392 | /* True while doing kbd input. */ |
| 410 | extern bool waiting_for_input; | 393 | extern bool waiting_for_input; |
| 411 | 394 | ||
| @@ -415,9 +398,6 @@ extern struct timespec *input_available_clear_time; | |||
| 415 | 398 | ||
| 416 | extern bool ignore_mouse_drag_p; | 399 | extern bool ignore_mouse_drag_p; |
| 417 | 400 | ||
| 418 | /* The primary selection. */ | ||
| 419 | extern Lisp_Object QPRIMARY; | ||
| 420 | |||
| 421 | extern Lisp_Object parse_modifiers (Lisp_Object); | 401 | extern Lisp_Object parse_modifiers (Lisp_Object); |
| 422 | extern Lisp_Object reorder_modifiers (Lisp_Object); | 402 | extern Lisp_Object reorder_modifiers (Lisp_Object); |
| 423 | extern Lisp_Object read_char (int, Lisp_Object, Lisp_Object, | 403 | extern Lisp_Object read_char (int, Lisp_Object, Lisp_Object, |
| @@ -428,17 +408,6 @@ extern int parse_solitary_modifier (Lisp_Object symbol); | |||
| 428 | /* This is like Vthis_command, except that commands never set it. */ | 408 | /* This is like Vthis_command, except that commands never set it. */ |
| 429 | extern Lisp_Object real_this_command; | 409 | extern Lisp_Object real_this_command; |
| 430 | 410 | ||
| 431 | /* Non-nil disable property on a command means | ||
| 432 | do not execute it; call disabled-command-function's value instead. */ | ||
| 433 | extern Lisp_Object QCtoggle, QCradio; | ||
| 434 | |||
| 435 | /* An event header symbol HEAD may have a property named | ||
| 436 | Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS); | ||
| 437 | BASE is the base, unmodified version of HEAD, and MODIFIERS is the | ||
| 438 | mask of modifiers applied to it. If present, this is used to help | ||
| 439 | speed up parse_modifiers. */ | ||
| 440 | extern Lisp_Object Qevent_symbol_element_mask; | ||
| 441 | |||
| 442 | extern int quit_char; | 411 | extern int quit_char; |
| 443 | 412 | ||
| 444 | extern unsigned int timers_run; | 413 | extern unsigned int timers_run; |