aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-26 20:03:00 +0000
committerRichard M. Stallman1993-07-26 20:03:00 +0000
commitefd19407f250d540d1319e89a23559a63dfa4286 (patch)
tree2bda9dc3c0ba9d1a9239ed45481eb1144f24bb91
parent5a41ab94d9b500763b8571973375c2b2202a93cc (diff)
downloademacs-efd19407f250d540d1319e89a23559a63dfa4286.tar.gz
emacs-efd19407f250d540d1319e89a23559a63dfa4286.zip
(normal-top-level): Call font-menu-add-default.
-rw-r--r--lisp/startup.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index d6d984fc839..249c1d90715 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -148,8 +148,13 @@ directory name of the directory where the `.emacs' file was looked for.")
148 (run-hooks 'emacs-startup-hook) 148 (run-hooks 'emacs-startup-hook)
149 (and term-setup-hook 149 (and term-setup-hook
150 (run-hooks 'term-setup-hook)) 150 (run-hooks 'term-setup-hook))
151 ;; Modify the initial frame based on what .emacs puts into
152 ;; ...-frame-alist.
151 (if (fboundp 'frame-notice-user-settings) 153 (if (fboundp 'frame-notice-user-settings)
152 (frame-notice-user-settings)) 154 (frame-notice-user-settings))
155 ;; Now we know the user's default font, so add it to the menu.
156 (if (fboundp 'font-menu-add-default)
157 (font-menu-add-default))
153 (and window-setup-hook 158 (and window-setup-hook
154 (run-hooks 'window-setup-hook))))) 159 (run-hooks 'window-setup-hook)))))
155 160