emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/setup fdd335f 1/2: Return nil when path doesn't exist i


From: ELPA Syncer
Subject: [elpa] externals/setup fdd335f 1/2: Return nil when path doesn't exist in :load-from
Date: Sun, 11 Jul 2021 13:57:15 -0400 (EDT)

branch: externals/setup
commit fdd335f0480cd0b9cb5f0198fb96f11883886310
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Return nil when path doesn't exist in :load-from
---
 setup.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.el b/setup.el
index cf21f0d..78204a4 100644
--- a/setup.el
+++ b/setup.el
@@ -556,7 +556,7 @@ the first PACKAGE."
   (lambda (path)
     `(if (file-exists-p ,path)
          (add-to-list 'load-path (expand-file-name ,path))
-       (throw 'setup-exit t)))
+       (throw 'setup-exit nil)))
   :documentation "Add PATH to load path.
 This macro can be used as HEAD, and it will replace itself with
 the nondirectory part of PATH.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]