summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-07-08 20:52:59 +0200
committerrekado <rekado@elephly.net>2016-07-08 20:52:59 +0200
commit2cc6c88972509f7fe0e02993a9243eac5308eaae (patch)
tree435e428f529c8f78846b765c012ccadb78b1cefb
parente74df86f3eba9aa9d24597dc7911f67d11ecf877 (diff)
Use with-eval-after-load.
-rw-r--r--init.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.org b/init.org
index d0048fa..e9013f0 100644
--- a/init.org
+++ b/init.org
@@ -313,10 +313,10 @@ All of this should be loaded lazily.
#+BEGIN_SRC elisp :noweb-ref org-mode
(provide 'my/init-org)
-(eval-after-load "org"
- '(progn
- <<org-mode-part1>>
- ))
+(with-eval-after-load "org"
+ <<org-mode-part1>>
+ <<org-mode-pretty>>
+ )
(require 'org)
#+END_SRC