]> git.eshelyaron.com Git - emacs.git/commitdiff
(Flookup_key, Fdefine_key): Use Fevent_convert_list.
authorKarl Heuer <kwzh@gnu.org>
Fri, 9 Jun 1995 01:15:14 +0000 (01:15 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 9 Jun 1995 01:15:14 +0000 (01:15 +0000)
src/keymap.c

index 31e6c9c4d6925148b061d309f6479019fbe037ce..e89e9e4501e09c6317f0d923f551d20dee4da4e4 100644 (file)
@@ -607,7 +607,7 @@ the front of KEYMAP.")
       c = Faref (key, make_number (idx));
 
       if (CONSP (c) && lucid_event_type_list_p (c))
-       c = convert_event_type_list (c);
+       c = Fevent_convert_list (c);
 
       if (INTEGERP (c)
          && (XINT (c) & meta_bit)
@@ -701,7 +701,7 @@ recognize the default bindings, just as `read-key-sequence' does.")
       c = Faref (key, make_number (idx));
 
       if (CONSP (c) && lucid_event_type_list_p (c))
-       c = convert_event_type_list (c);
+       c = Fevent_convert_list (c);
 
       if (INTEGERP (c)
          && (XINT (c) & meta_bit)