summaryrefslogtreecommitdiff
path: root/lisp/progmodes/compile.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-04-30 19:42:42 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-04-30 19:42:42 +0200
commit0ea217d6464833b5c67666d9fed15b87884b0988 (patch)
tree188cdd4f9e366d11f8b6ec920384073aefce9ae2 /lisp/progmodes/compile.el
parentd90f54db2285002ae969f7c685779c21eaec1605 (diff)
downloademacs-0ea217d6464833b5c67666d9fed15b87884b0988.tar.gz
emacs-0ea217d6464833b5c67666d9fed15b87884b0988.tar.bz2
emacs-0ea217d6464833b5c67666d9fed15b87884b0988.zip
Fix compilation-max-output-line-length type
* lisp/progmodes/compile.el (compilation-max-output-line-length): Fix the type.
Diffstat (limited to 'lisp/progmodes/compile.el')
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
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 ()