From fe1c081c3881421841b1e1ce4847035fdcdd457b Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Wed, 10 Mar 2021 15:50:58 +0100 Subject: [PATCH] * Fix truncated warnings (bug#47024) * lisp/emacs-lisp/comp.el (comp-run-async-workers): Bind `warning-fill-column' to `most-positive-fixnum'. --- lisp/emacs-lisp/comp.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 81ab361fff7..3d2a345e210 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3882,7 +3882,8 @@ display a message." comp-eln-load-path ',comp-eln-load-path comp-native-driver-options ',comp-native-driver-options - load-path ',load-path) + load-path ',load-path + warning-fill-column most-positive-fixnum) ,comp-async-env-modifier-form (message "Compiling %s..." ,source-file) (comp--native-compile ,source-file ,(and load t)))) -- 2.39.2