mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Fix print-length issue in comp-run-async-workers
* lisp/emacs-lisp/comp.el (comp-run-async-workers): Bind print-length/print-level to ensure there's no truncation (bug#49922).
This commit is contained in:
parent
6a3920c07e
commit
bc1ffc5f6e
1 changed files with 3 additions and 1 deletions
|
|
@ -3936,7 +3936,9 @@ display a message."
|
|||
(concat "emacs-async-comp-"
|
||||
(file-name-base source-file) "-")
|
||||
nil ".el"))
|
||||
(expr-strings (mapcar #'prin1-to-string expr))
|
||||
(expr-strings (let ((print-length nil)
|
||||
(print-level nil))
|
||||
(mapcar #'prin1-to-string expr)))
|
||||
(_ (progn
|
||||
(with-temp-file temp-file
|
||||
(mapc #'insert expr-strings))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue