aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-06-09 01:14:45 +0000
committerKarl Heuer1995-06-09 01:14:45 +0000
commita1706c30d64eb545f7510896e74a94ae1f5b7767 (patch)
tree52585c956fc437f8933d799e6ebf6558523f3e4c /src
parent21af8a68c8037673aa7da2350ae1f61dc9634fb0 (diff)
downloademacs-a1706c30d64eb545f7510896e74a94ae1f5b7767.tar.gz
emacs-a1706c30d64eb545f7510896e74a94ae1f5b7767.zip
(Fevent_convert_list): Renamed from convert_event_type_list.
(syms_of_keyboard): defsubr it.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 04ee068d454..fa8b1fad67a 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3795,8 +3795,14 @@ modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
3795 such as (ctrl meta backspace), into the usual representation of that 3795 such as (ctrl meta backspace), into the usual representation of that
3796 event type as a number or a symbol. */ 3796 event type as a number or a symbol. */
3797 3797
3798Lisp_Object 3798DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
3799convert_event_type_list (event) 3799 "Convert the event description LIST to an event type.\n\
3800LIST should contain one base event type (a character or symbol)\n\
3801and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
3802drag, down, double or triple).\n\
3803The return value is an event type (a character or symbol) which\n\
3804has the same base event type and all the specified modifiers.")
3805 (event)
3800 Lisp_Object event; 3806 Lisp_Object event;
3801{ 3807{
3802 Lisp_Object base; 3808 Lisp_Object base;
@@ -6866,6 +6872,7 @@ syms_of_keyboard ()
6866 unread_switch_frame = Qnil; 6872 unread_switch_frame = Qnil;
6867 staticpro (&unread_switch_frame); 6873 staticpro (&unread_switch_frame);
6868 6874
6875 defsubr (&Sevent_convert_list);
6869 defsubr (&Sread_key_sequence); 6876 defsubr (&Sread_key_sequence);
6870 defsubr (&Srecursive_edit); 6877 defsubr (&Srecursive_edit);
6871#ifdef HAVE_MOUSE 6878#ifdef HAVE_MOUSE