From 0ea217d6464833b5c67666d9fed15b87884b0988 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sat, 30 Apr 2022 19:42:42 +0200 Subject: [PATCH] Fix compilation-max-output-line-length type * lisp/progmodes/compile.el (compilation-max-output-line-length): Fix the type. --- lisp/progmodes/compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index a621779f8cb..6753cf0b027 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -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 () -- 2.39.2