Variable: compilation-max-output-line-length

compilation-max-output-line-length is a customizable variable defined in compile.el.gz.

Value

400

Documentation

Output lines that are longer than this value will be hidden.

If nil, don't hide anything.

This variable was added, or its default value changed, in Emacs 29.1.

View in manual

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defcustom compilation-max-output-line-length 400
  "Output lines that are longer than this value will be hidden.
If nil, don't hide anything."
  :type '(choice (const :tag "Hide nothing" nil)
                 integer)
  :version "29.1")