From a0bec8499761f1c8cec8ee07ede0e734e630e46f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 2 Jun 2018 01:08:23 +0200 Subject: [PATCH] Don't complain if no private packages.el --- core/core-packages.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-packages.el b/core/core-packages.el index 4c31c3bce..3c34f09fd 100644 --- a/core/core-packages.el +++ b/core/core-packages.el @@ -340,11 +340,11 @@ them." ;; We load the private packages file twice to ensure disabled ;; packages are seen ASAP, and a second time to ensure privately ;; overridden packages are properly overwritten. - (_load (expand-file-name "packages.el" doom-private-dir)) + (_load (expand-file-name "packages.el" doom-private-dir) t) (cl-loop for key being the hash-keys of doom-modules for path = (doom-module-path (car key) (cdr key) "packages.el") do (let ((doom--current-module key)) (_load path t))) - (_load (expand-file-name "packages.el" doom-private-dir))))))))) + (_load (expand-file-name "packages.el" doom-private-dir) t)))))))) ;;