# HG changeset patch # User Karl Heuer # Date 768270125 0 # Node ID fb05d6911dccf1ff006382e560caa80f596ba381 # Parent 099233e3a3be719ca6665f45ca7cb4f1cd00d28e Don't precompute keybinding cache for menubar. Now done in startup.el instead. diff -r 099233e3a3be -r fb05d6911dcc lisp/loadup.el --- a/lisp/loadup.el Sat May 07 00:21:24 1994 +0000 +++ b/lisp/loadup.el Sat May 07 00:22:05 1994 +0000 @@ -114,17 +114,6 @@ ;; 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.