Fix accidental cl.el dependency error

This commit is contained in:
Henrik Lissner 2016-10-07 00:26:27 +02:00
parent ee94db2678
commit 2231bf25df

View file

@ -167,8 +167,8 @@ reloads.")
(require 'core-defuns) (require 'core-defuns)
(let ((paths (eval-when-compile (doom-reload)))) (let ((paths (eval-when-compile (doom-reload))))
(setq load-path (car paths) (setq load-path (car paths)
custom-theme-load-path (cadr paths) custom-theme-load-path (nth 1 paths)
doom-packages (caddr paths))) doom-packages (nth 2 paths)))
;; Many functions are lazy-loaded. The autoloads.el file contains info on where ;; Many functions are lazy-loaded. The autoloads.el file contains info on where
;; to find them if they're called. Tries to generate autoloads.el if one isn't ;; to find them if they're called. Tries to generate autoloads.el if one isn't