benchmark fix

This commit is contained in:
Ivan Malison 2016-06-17 12:46:13 -07:00
parent 9375096279
commit ff489c541a

View File

@ -28,9 +28,8 @@ custom-before.el is loaded before the rest of init.el, while custom-after.el is
This appears here so that it can accurately benchmark as much of startup as possible. This appears here so that it can accurately benchmark as much of startup as possible.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defvar imalison:do-benchmark) (defvar imalison:do-benchmark)
(when imalison:do-benchmark (when (and (boundp 'imalison:do-benchmark) imalison:do-benchmark)
(use-package benchmark-init (use-package benchmark-init))
:if (and (boundp 'imalison:do-benchmark) imalison:do-benchmark)))
#+END_SRC #+END_SRC
** GUI Disables ** GUI Disables
Death to any gui elements in emacs! Do this EARLY so that emacs doesn't redisplay in a way that is visually unpleasant on startup a bunch of times. Death to any gui elements in emacs! Do this EARLY so that emacs doesn't redisplay in a way that is visually unpleasant on startup a bunch of times.