summaryrefslogtreecommitdiffstats
path: root/lisp/init-sane-defaults.el
diff options
context:
space:
mode:
authorMartin Polden <martin.polden@gmail.com>2014-06-15 15:22:43 +0200
committerMartin Polden <martin.polden@gmail.com>2014-06-15 15:33:54 +0200
commit359733d8422c543f4d02c9ed09e3032414facef3 (patch)
tree0a8c3d5e53dc732f350c39474de184e6392730f2 /lisp/init-sane-defaults.el
parent200516e34589c667671623add8af512877fda845 (diff)
Be explicit when enabling modes
Diffstat (limited to 'lisp/init-sane-defaults.el')
-rw-r--r--lisp/init-sane-defaults.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-sane-defaults.el b/lisp/init-sane-defaults.el
index d28aef3..fbe0e23 100644
--- a/lisp/init-sane-defaults.el
+++ b/lisp/init-sane-defaults.el
@@ -8,7 +8,7 @@
(setq confirm-nonexistent-file-or-buffer nil)
;; disable audible bell
-(setq ring-bell-function #'ignore)
+(setq ring-bell-function 'ignore)
;; scroll one line at a time
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))
@@ -17,7 +17,7 @@
(setq mouse-wheel-progressive-speed nil)
;; reload buffers automatically when files change on disk
-(global-auto-revert-mode t)
+(global-auto-revert-mode 1)
;; reload dired buffers automatically and be quit about it
(setq global-auto-revert-non-file-buffers t)