]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compilation-max-output-line-length type
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2022 17:42:42 +0000 (19:42 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 30 Apr 2022 17:42:42 +0000 (19:42 +0200)
* lisp/progmodes/compile.el (compilation-max-output-line-length):
Fix the type.

lisp/progmodes/compile.el

index a621779f8cbec6227f15727a165e9961def4999c..6753cf0b0275fe025740f72e30ce479c6a11a69e 100644 (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 ()