# HG changeset patch # User Stefan Monnier # Date 1210913756 0 # Node ID cd54e612f34f14851e4407487adc031d7c59c2f4 # Parent 7f50b5fc70de6d7ccca36d1ab6ce0e5de2c150fd (parse_menu_item): Fix last change. diff -r 7f50b5fc70de -r cd54e612f34f src/keyboard.c --- a/src/keyboard.c Fri May 16 04:28:27 2008 +0000 +++ b/src/keyboard.c Fri May 16 04:55:56 2008 +0000 @@ -7990,8 +7990,9 @@ of equivalent key bindings is sufficiently fast that we do not need to cache it here any more. */ /* CHECK_IMPURE (start); - XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start))); */ - cachelist = XCAR (XCDR (start)); + XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start))); + cachelist = XCAR (XCDR (start)); */ + cachelist = Fcons (Qnil, Qnil); newcache = 1; tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ); if (!NILP (keyhint))