diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-12-06 02:23:02 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-12-06 02:23:02 +0100 |
commit | 2454f9876d647453d5e0d8e4aa2260f9254978c8 (patch) | |
tree | c22b86db7f27a2fca375553538d3a538e3096e8b /lisp/emacs-lisp/warnings.el | |
parent | 77de40aed31d7c12569d05474f85e1d70b55d35e (diff) | |
download | emacs-2454f9876d647453d5e0d8e4aa2260f9254978c8.tar.gz emacs-2454f9876d647453d5e0d8e4aa2260f9254978c8.tar.bz2 emacs-2454f9876d647453d5e0d8e4aa2260f9254978c8.zip |
Don't fill byte-compilation warnings in batch mode
* lisp/emacs-lisp/warnings.el (display-warning): Don't break up
byte-compilation into several lines when in batch mode, because
that makes it difficult for some tools to parse them (bug#52281).
Diffstat (limited to 'lisp/emacs-lisp/warnings.el')
-rw-r--r-- | lisp/emacs-lisp/warnings.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/warnings.el b/lisp/emacs-lisp/warnings.el index 36b275e2d3c..1d061364a03 100644 --- a/lisp/emacs-lisp/warnings.el +++ b/lisp/emacs-lisp/warnings.el @@ -307,7 +307,9 @@ entirely by setting `warning-suppress-types' or 'type 'warning-suppress-log-warning 'warning-type type)) (funcall newline) - (when (and warning-fill-prefix (not (string-search "\n" message))) + (when (and warning-fill-prefix + (not (string-search "\n" message)) + (not noninteractive)) (let ((fill-prefix warning-fill-prefix) (fill-column warning-fill-column)) (fill-region start (point)))) |