Mercurial > hg > xemacs-beta
comparison src/event-stream.c @ 290:c9fe270a4101 r21-0b43
Import from CVS: tag r21-0b43
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:36:47 +0200 |
parents | 558f606b08ae |
children | a4f53d9b3154 |
comparison
equal
deleted
inserted
replaced
289:6e6992ccc4b6 | 290:c9fe270a4101 |
---|---|
154 | 154 |
155 /* The nearest ASCII equivalent of the above. */ | 155 /* The nearest ASCII equivalent of the above. */ |
156 Lisp_Object Vlast_input_char; | 156 Lisp_Object Vlast_input_char; |
157 | 157 |
158 Lisp_Object Vcurrent_mouse_event; | 158 Lisp_Object Vcurrent_mouse_event; |
159 | |
160 /* This is fbound in cmdloop.el, see the commentary there */ | |
161 Lisp_Object Qcancel_mode_internal; | |
159 | 162 |
160 /* If not Qnil, event objects to be read as the next command input */ | 163 /* If not Qnil, event objects to be read as the next command input */ |
161 Lisp_Object Vunread_command_events; | 164 Lisp_Object Vunread_command_events; |
162 Lisp_Object Vunread_command_event; /* obsoleteness support */ | 165 Lisp_Object Vunread_command_event; /* obsoleteness support */ |
163 | 166 |
3862 */ | 3865 */ |
3863 | 3866 |
3864 DEFUN ("recent-keys", Frecent_keys, 0, 1, 0, /* | 3867 DEFUN ("recent-keys", Frecent_keys, 0, 1, 0, /* |
3865 Return a vector of recent keyboard or mouse button events read. | 3868 Return a vector of recent keyboard or mouse button events read. |
3866 If NUMBER is non-nil, not more than NUMBER events will be returned. | 3869 If NUMBER is non-nil, not more than NUMBER events will be returned. |
3867 Change number of events stored using `set-recent-keys-size'. | 3870 Change number of events stored using `set-recent-keys-ring-size'. |
3868 | 3871 |
3869 This copies the event objects into a new vector; it is safe to keep and | 3872 This copies the event objects into a new vector; it is safe to keep and |
3870 modify them. | 3873 modify them. |
3871 */ | 3874 */ |
3872 (number)) | 3875 (number)) |
4957 defsymbol (&Qmenu_down, "menu-down"); | 4960 defsymbol (&Qmenu_down, "menu-down"); |
4958 defsymbol (&Qmenu_left, "menu-left"); | 4961 defsymbol (&Qmenu_left, "menu-left"); |
4959 defsymbol (&Qmenu_right, "menu-right"); | 4962 defsymbol (&Qmenu_right, "menu-right"); |
4960 defsymbol (&Qmenu_select, "menu-select"); | 4963 defsymbol (&Qmenu_select, "menu-select"); |
4961 defsymbol (&Qmenu_escape, "menu-escape"); | 4964 defsymbol (&Qmenu_escape, "menu-escape"); |
4965 | |
4966 defsymbol (&Qcancel_mode_internal, "cancel-mode-internal"); | |
4962 } | 4967 } |
4963 | 4968 |
4964 void | 4969 void |
4965 vars_of_event_stream (void) | 4970 vars_of_event_stream (void) |
4966 { | 4971 { |