Stop byte compiling init.

Commit
4a65449ad160b2b741ffbc85e9b081a84c19d134
Author
Blendoit <blendoit@gmail.com>
Author date
Committer
Blendoit <blendoit@gmail.com>
Committer date
init.el
index 86a29d4b..ceffb356 100644..100644
@@ -10,13 +10,13 @@
10 10
11 11 ;; Emacs will startup faster next time, because it will load
12 12 ;; a byte-compiled version of our literate configuration file.
13 Removed: (cond ((file-exists-p (concat my/literate-config ".el"))
14 Removed: (load my/literate-config))
15 Removed: ((file-exists-p (concat my/literate-config ".org"))
16 Removed: (org-babel-load-file (concat my/literate-config ".org")))
17 Removed: (t (message "No literate configuration file detected.")))
13 Added: ;; (cond ((file-exists-p (concat my/literate-config ".el"))
14 Added: ;; (load my/literate-config))
15 Added: ;; ((file-exists-p (concat my/literate-config ".org"))
16 Added: ;; (org-babel-load-file (concat my/literate-config ".org")))
17 Added: ;; (t (message "No literate configuration file detected.")))
18 18
19 Removed: ;; (org-babel-load-file (concat my/literate-config ".org"))
19 Added: (org-babel-load-file (concat my/literate-config ".org"))
20 20
21 21 (provide 'init)
22 22