branch: elpa/package-lint
commit ac59edccb748528eade13b88ed1e5d2b0b0661ee
Author: Steve Purcell <st...@sanityinc.com>
Commit: Steve Purcell <st...@sanityinc.com>

    Add missing arg for with-demoted-errors in sym-dump
---
 tools/sym-dump.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/sym-dump.el b/tools/sym-dump.el
index e41e6ae0bf..a3ef249053 100644
--- a/tools/sym-dump.el
+++ b/tools/sym-dump.el
@@ -72,7 +72,7 @@
 (defun sym-dump-go-crazy ()
   (dolist (lib (sym-dump-libraries load-path))
     (message "Loading %s" lib)
-    (with-demoted-errors (require lib nil t)))
+    (with-demoted-errors "Error: %S" (require lib nil t)))
   (message "Loaded all")
   (let (print-level print-length) ; avoid truncation
     (pp (sym-dump-loaded))))

Reply via email to