diff options
author | David Thompson <davet@gnu.org> | 2015-05-24 04:36:09 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-05-24 04:36:09 -0400 |
commit | d19c6c84c2ff777bf8b4f470b2a74b241f95d384 (patch) | |
tree | d88359d071483362202a81a07f50efe75379dece | |
parent | b1c4c71db309021c818f0eb57d3177f3b4dddd7d (diff) |
emacs: Prefer setf to setq.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index 8c46f79..54a0b0a 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -4,7 +4,7 @@ (if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) ;; No splash screen. -(setq inhibit-startup-message t) +(setf inhibit-startup-message t) ;;; ;;; Packages |