From 27d43aebc54ee1d243c6334796acb7de668b036c Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Mon, 2 Nov 2015 21:21:12 +1300 Subject: [PATCH] concat supports nil, so simplify setting of initial-scratch-message --- lisp/init-lisp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/init-lisp.el b/lisp/init-lisp.el index 72bb0ecc1b..ae2e597b70 100644 --- a/lisp/init-lisp.el +++ b/lisp/init-lisp.el @@ -6,7 +6,7 @@ (require-package 'lively) (setq-default initial-scratch-message - (concat ";; Happy hacking " (or user-login-name "") " - Emacs ♥ you!\n\n")) + (concat ";; Happy hacking " user-login-name " - Emacs ♥ you!\n\n"))