aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-08-06 03:56:11 +0200
committerGravatar Tom Willemse2016-08-06 03:56:11 +0200
commit27365e5a11ea8c0c11bcf36183bf8db0de01672e (patch)
treed013a08416c537f3d5a2df4754baf772729aa9ef
parent9792ae74f04a4dd51c2ef657e25d2b035bd99dea (diff)
downloadnew-dotfiles-27365e5a11ea8c0c11bcf36183bf8db0de01672e.tar.gz
new-dotfiles-27365e5a11ea8c0c11bcf36183bf8db0de01672e.zip
Fix undefined variable error
-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 af29e61..84ca8a4 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -529,7 +529,7 @@ To start off, first I need to enable lexical binding.
#+BEGIN_SRC emacs-lisp
(eval-when-compile (require 'gnus-msg))
- (with-eval-after-load 'gnus
+ (with-eval-after-load 'gnus-msg
(add-to-list 'gnus-posting-styles
'(".*"
(address "tom@ryuslash.org")
@@ -552,7 +552,7 @@ To start off, first I need to enable lexical binding.
msmtp account and set the proper name and email address.
#+BEGIN_SRC emacs-lisp
- (with-eval-after-load 'gnus
+ (with-eval-after-load 'gnus-msg
(add-to-list 'gnus-posting-styles
'("picturefix:"
(name "Tom Willemsen")