diff options
| author | Karl Heuer | 1995-06-09 01:15:14 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-09 01:15:14 +0000 |
| commit | 41015a196c0380a5fa7f010ecac2468ea6163565 (patch) | |
| tree | 829bcc8b6f1e31526654bf4f79af93081f3ca468 /src/keymap.c | |
| parent | a1706c30d64eb545f7510896e74a94ae1f5b7767 (diff) | |
| download | emacs-41015a196c0380a5fa7f010ecac2468ea6163565.tar.gz emacs-41015a196c0380a5fa7f010ecac2468ea6163565.zip | |
(Flookup_key, Fdefine_key): Use Fevent_convert_list.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index 31e6c9c4d69..e89e9e4501e 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -607,7 +607,7 @@ the front of KEYMAP.") | |||
| 607 | c = Faref (key, make_number (idx)); | 607 | c = Faref (key, make_number (idx)); |
| 608 | 608 | ||
| 609 | if (CONSP (c) && lucid_event_type_list_p (c)) | 609 | if (CONSP (c) && lucid_event_type_list_p (c)) |
| 610 | c = convert_event_type_list (c); | 610 | c = Fevent_convert_list (c); |
| 611 | 611 | ||
| 612 | if (INTEGERP (c) | 612 | if (INTEGERP (c) |
| 613 | && (XINT (c) & meta_bit) | 613 | && (XINT (c) & meta_bit) |
| @@ -701,7 +701,7 @@ recognize the default bindings, just as `read-key-sequence' does.") | |||
| 701 | c = Faref (key, make_number (idx)); | 701 | c = Faref (key, make_number (idx)); |
| 702 | 702 | ||
| 703 | if (CONSP (c) && lucid_event_type_list_p (c)) | 703 | if (CONSP (c) && lucid_event_type_list_p (c)) |
| 704 | c = convert_event_type_list (c); | 704 | c = Fevent_convert_list (c); |
| 705 | 705 | ||
| 706 | if (INTEGERP (c) | 706 | if (INTEGERP (c) |
| 707 | && (XINT (c) & meta_bit) | 707 | && (XINT (c) & meta_bit) |