emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 6670972: Fix type declaration of two Flymake customization variab


From: João Távora
Subject: master 6670972: Fix type declaration of two Flymake customization variables
Date: Thu, 31 Dec 2020 11:04:57 -0500 (EST)

branch: master
commit 66709725622e032f38fbd9cffbf09bb0781de90e
Author: João Távora <joaotavora@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    Fix type declaration of two Flymake customization variables
    
    * lisp/progmodes/flymake.el (flymake-mode-line-format)
    (flymake-mode-line-counter-format): Fix type declaration.
---
 lisp/progmodes/flymake.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 8d1797f..cdee239 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -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.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]