diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-30 10:40:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-30 10:40:31 +0000 |
commit | 1d747c0952c610c4412cc84e1e4186c96ccee7c0 (patch) | |
tree | c752723cb270a9e434df1342d096889116e2b882 /lisp/loadup.el | |
parent | db4c3810bc7530e780d7c4038966b2d674a79f9c (diff) | |
download | emacs-1d747c0952c610c4412cc84e1e4186c96ccee7c0.tar.gz |
Load facemenu if have X.
After dumping, print number of pure bytes used.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index f9f0bd50093..d0afa2034ec 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -56,6 +56,7 @@ (load "mouse") (garbage-collect) (load "faces") + (load "facemenu") (garbage-collect) (load "menu-bar") (load "scroll-bar") @@ -203,6 +204,7 @@ ;; under the name `xemacs'), and it's inconsistent with every ;; other GNU product's build process. (dump-emacs "emacs" "temacs") + (message "%d pure bytes used" pure-bytes-used) ;; Recompute NAME now, so that it isn't set when we dump. (if (not (eq system-type 'ms-dos)) (let ((name (concat "emacs-" emacs-version))) |