summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-09-28 23:08:35 +0200
committerGravatar Tom Willemse2015-09-28 23:08:35 +0200
commit5f94872d37f41e727b4025ffa821753ad0a13017 (patch)
tree5022dc8041089da117b490b140ded2c037523a0c /emacs
parent2488743abd583ffd3fccd2217d613ee4ccea665c (diff)
downloaddotfiles-5f94872d37f41e727b4025ffa821753ad0a13017.tar.gz
dotfiles-5f94872d37f41e727b4025ffa821753ad0a13017.zip
Only load cask at compile-time
As long as init.org doesn't contain everything in my init.el it's still needed at compile-time.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 230847d..2d09237 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -8,11 +8,11 @@
;; You may delete these explanatory comments.
;; (package-initialize)
-(eval-and-compile
+(eval-when-compile
+ ;; Just necessary for now, also included in init.org.
(require 'cask "~/projects/ext/cask/cask.el")
- (cask-initialize))
+ (cask-initialize)
-(eval-when-compile
(require 'cl)
(require 'dash)
(require 'esh-io)