]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't precompute keybinding cache for menubar. Now done in startup.el instead.
authorKarl Heuer <kwzh@gnu.org>
Sat, 7 May 1994 00:22:05 +0000 (00:22 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 7 May 1994 00:22:05 +0000 (00:22 +0000)
lisp/loadup.el

index 6f5b290348fbc37721f2ca69437095204c27911e..2f39713e6aa5575804872aab5908c26f325bb157 100644 (file)
 ;; We specify .el in case someone compiled version.el by mistake.
 (load "version.el")
 
-;; Precompute the keyboard equivalents in the menu bar items.
-(if (fboundp 'x-popup-menu)
-    (let ((submap (lookup-key global-map [menu-bar])))
-      (while submap
-       (and (consp (car submap))
-            (symbolp (car (car submap)))
-            (stringp (car-safe (cdr (car submap))))
-            (keymapp (cdr (cdr (car submap))))
-            (x-popup-menu nil (cdr (cdr (car submap)))))
-       (setq submap (cdr submap)))))
-
 ;If you want additional libraries to be preloaded and their
 ;doc strings kept in the DOC file rather than in core,
 ;you may load them with a "site-load.el" file.