From efd19407f250d540d1319e89a23559a63dfa4286 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 26 Jul 1993 20:03:00 +0000 Subject: [PATCH] (normal-top-level): Call font-menu-add-default. --- lisp/startup.el | 5 +++++ 1 file changed, 5 insertions(+) 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.") (run-hooks 'emacs-startup-hook) (and term-setup-hook (run-hooks 'term-setup-hook)) + ;; Modify the initial frame based on what .emacs puts into + ;; ...-frame-alist. (if (fboundp 'frame-notice-user-settings) (frame-notice-user-settings)) + ;; Now we know the user's default font, so add it to the menu. + (if (fboundp 'font-menu-add-default) + (font-menu-add-default)) (and window-setup-hook (run-hooks 'window-setup-hook))))) -- 2.39.5