branch: elpa/package-lint commit 244660faef8b4da60973281874ec50b2988f45c2 Author: Steve Purcell <st...@sanityinc.com> Commit: Steve Purcell <st...@sanityinc.com>
Override pp-default-function when dumping symbol data This is new in Emacs 30.1, but results in differently formatted or truncated data that can't then be read. --- 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 a3ef249053..f273370763 100644 --- a/tools/sym-dump.el +++ b/tools/sym-dump.el @@ -74,7 +74,7 @@ (message "Loading %s" lib) (with-demoted-errors "Error: %S" (require lib nil t))) (message "Loaded all") - (let (print-level print-length) ; avoid truncation + (let (print-level print-length (pp-default-function 'pp-29)) ; avoid truncation (pp (sym-dump-loaded)))) (sym-dump-go-crazy)