From ff489c541a6ac289190fb40795352d24be86a650 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 17 Jun 2016 12:46:13 -0700 Subject: [PATCH] benchmark fix --- dotfiles/emacs.d/README.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 43ef4eab..b1153129 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -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. #+BEGIN_SRC emacs-lisp (defvar imalison:do-benchmark) - (when imalison:do-benchmark - (use-package benchmark-init - :if (and (boundp 'imalison:do-benchmark) imalison:do-benchmark))) + (when (and (boundp 'imalison:do-benchmark) imalison:do-benchmark) + (use-package benchmark-init)) #+END_SRC ** 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.