From 6d1e3625ecfebaa97e656babc3955cced102406c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 13 Jun 1998 05:27:47 +0000 Subject: (parse_menu_item): Put a quote around DEF to pass it as an argument to the filter function. --- src/keyboard.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/keyboard.c b/src/keyboard.c index cf793b1909a..fee59e3af95 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5801,8 +5801,9 @@ parse_menu_item (item, notreal, inmenubar) def = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF]; if (!NILP (filter)) { - def = menu_item_eval_property (Fcons (XCONS (filter)->car, - Fcons (def, Qnil))); + def = menu_item_eval_property (list2 (XCONS (filter)->car, + list2 (Qquote, def))); + XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF] = def; } -- cgit v1.2.1