]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix type declaration of two Flymake customization variables
authorJoão Távora <joaotavora@gmail.com>
Thu, 31 Dec 2020 16:04:32 +0000 (16:04 +0000)
committerJoão Távora <joaotavora@gmail.com>
Thu, 31 Dec 2020 16:04:42 +0000 (16:04 +0000)
* lisp/progmodes/flymake.el (flymake-mode-line-format)
(flymake-mode-line-counter-format): Fix type declaration.

lisp/progmodes/flymake.el

index 8d1797fe3ce9260ad2d7090cf6c7161db19b402c..cdee239164228253f19b20c10cfb65f7498a2e54 100644 (file)
@@ -1191,7 +1191,7 @@ default) no filter is applied."
     flymake-mode-line-counters)
   "Mode line construct for customizing Flymake information."
   :group 'flymake
-  :type '(list string symbol))
+  :type '(repeat (choice string symbol)))
 
 (defcustom flymake-mode-line-counter-format
   '("["
@@ -1203,7 +1203,7 @@ This is a suitable place for placing the `flymake-error-counter',
 `flymake-warning-counter' and `flymake-note-counter' constructs.
 Separating each of these with space is not necessary."
   :group 'flymake
-  :type '(list string symbol))
+  :type '(repeat (choice string symbol)))
 
 (defvar flymake-mode-line-title '(:eval (flymake--mode-line-title))
   "Mode-line construct to show Flymake's mode name and menu.")