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

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

[elpa] master abe8914 2/4: Fix failed autoloads because of not-loaded re


From: Artur Malabarba
Subject: [elpa] master abe8914 2/4: Fix failed autoloads because of not-loaded requires
Date: Thu, 23 Jul 2015 13:51:30 +0000

branch: master
commit abe89142dafb7c5073848b912daecf08cbb7dd13
Author: Artur Malabarba <address@hidden>
Commit: Artur Malabarba <address@hidden>

    Fix failed autoloads because of not-loaded requires
---
 names.el |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/names.el b/names.el
index 33f41a2..189b057 100644
--- a/names.el
+++ b/names.el
@@ -444,8 +444,15 @@ See `define-namespace' for more information."
           (push key-and-args names--keywords))
 
         ;; First have to populate the bound and fbound lists. So we read
-        ;; the entire form (without evaluating it).
-        (mapc 'names-convert-form body)
+        ;; the entire form (without return it).
+        (if names--inside-make-autoload
+            ;; Dependencies haven't been loaded during autoload
+            ;; generation, so we better ignore errors here. Ideally we
+            ;; would only go through the forms marked for autoloading,
+            ;; but then we wouldn't know what symbols are var/function
+            ;; names.
+            (mapc (lambda (form) (ignore-errors (names-convert-form form))) 
body)
+          (mapc #'names-convert-form body))
         (setq names--current-run (1+ names--current-run))
 
         ;; Then we go back and actually namespace the entire form, which



reply via email to

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