aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-08-05 01:39:52 +0200
committerGravatar Tom Willemse2016-08-05 01:39:52 +0200
commitd47f57f1b80ba34505e62ef6ad3a43a7f31a983a (patch)
tree810d3c1f67e2ca7e7500daf22b1c0f3f34357ef7 /emacs/.emacs.d
parent84fd3a8bc40a02a8456471e287453d74922deb25 (diff)
downloadnew-dotfiles-d47f57f1b80ba34505e62ef6ad3a43a7f31a983a.tar.gz
new-dotfiles-d47f57f1b80ba34505e62ef6ad3a43a7f31a983a.zip
Fix undefined variable error
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/init.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 95c89b5..910c4b6 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -491,7 +491,7 @@ To start off, first I need to enable lexical binding.
(eval-when-compile (require 'message))
(with-eval-after-load 'message
- (setq message-directory mail-source-directory))
+ (setq message-directory (oni:data-location "Mail")))
#+END_SRC
Store all nnfolder-related data in the same place as the Mail
@@ -501,7 +501,7 @@ To start off, first I need to enable lexical binding.
(eval-when-compile (require 'nnfolder))
(with-eval-after-load 'nnfolder
- (setq nnfolder-directory mail-source-directory))
+ (setq nnfolder-directory (oni:data-location "Mail")))
#+END_SRC
Use msmtp to send mail.