summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
authorAlan Pearce2015-12-27 14:45:01 +0000
committerAlan Pearce2015-12-27 14:45:01 +0000
commit4e27638ec46cee2fdf7c7d838a5375b66c00939d (patch)
treea9ec68632bc60dd5c3dd20d517c1550d8ba9046d /tag-emacs
parent58470726b86ca10892ffb91b48a571afc0cf8439 (diff)
downloaddotfiles-4e27638ec46cee2fdf7c7d838a5375b66c00939d.tar.lz
dotfiles-4e27638ec46cee2fdf7c7d838a5375b66c00939d.tar.zst
dotfiles-4e27638ec46cee2fdf7c7d838a5375b66c00939d.zip
Emacs: Use faster method to hide startup message
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org
index 8142fcb..a35e598 100644
--- a/tag-emacs/emacs.d/init.org
+++ b/tag-emacs/emacs.d/init.org
@@ -9,7 +9,8 @@ This is a living document, detailing my Emacs configuration using org-mode
 ** Startup
 Open Emacs with just a plain window. No graphics or messages, please!
 #+BEGIN_SRC emacs-lisp
-  (setq inhibit-startup-echo-area-message "alan")
+  (put 'inhibit-startup-echo-area-message 'saved-value
+       (setq inhibit-startup-echo-area-message (user-login-name)))
   (setq inhibit-startup-screen t)
   (setq gc-cons-threshold 100000000)
   (setq file-name-handler-alist nil)