]> git.eshelyaron.com Git - emacs.git/commitdiff
(parse_menu_item): Do not cache key shortcut any more.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 May 2008 04:28:27 +0000 (04:28 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 May 2008 04:28:27 +0000 (04:28 +0000)
src/ChangeLog
src/keyboard.c

index 9c5c073fc79c3455ddea5ca230eab2c7288a9311..cff5c24b1fdc2172a945a448b8d18355d6beb7be 100644 (file)
@@ -1,3 +1,7 @@
+2008-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
+
 2008-05-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
index c41815cf3c577db18eef4e10758003c723b0b416..5a8b0d1c0cfdb2610e0a8f6f433316061bbeba2d 100644 (file)
@@ -7986,8 +7986,11 @@ parse_menu_item (item, notreal, inmenubar)
   if (NILP (cachelist))
     {
       /* We have to create a cachelist.  */
-      CHECK_IMPURE (start);
-      XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
+      /* With the introduction of where_is_cache, the computation
+         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));
       newcache = 1;
       tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);