Fix compilation-max-output-line-length type

* lisp/progmodes/compile.el (compilation-max-output-line-length):
Fix the type.
This commit is contained in:
Lars Ingebrigtsen 2022-04-30 19:42:42 +02:00
parent d90f54db22
commit 0ea217d646

View file

@ -1756,7 +1756,7 @@ If nil, ask to kill it."
"Output lines that are longer than this value will be hidden.
If nil, don't hide anything."
:type '(choice (const :tag "Hide nothing" nil)
number)
integer)
:version "29.1")
(defun compilation--update-in-progress-mode-line ()