diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-30 19:42:42 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-04-30 19:42:42 +0200 |
commit | 0ea217d6464833b5c67666d9fed15b87884b0988 (patch) | |
tree | 188cdd4f9e366d11f8b6ec920384073aefce9ae2 /lisp/progmodes/compile.el | |
parent | d90f54db2285002ae969f7c685779c21eaec1605 (diff) | |
download | emacs-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.el | 2 |
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 () |