From 3216cd96952c5fa0fbe665ef219210c9ebaf4e75 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Wed, 4 Oct 2023 10:47:51 -0300 Subject: [PATCH] Fix pulse-flag :type * lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as value. (Bug#66341) --- lisp/cedet/pulse.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/cedet/pulse.el b/lisp/cedet/pulse.el index 37b41fbe8c3..38ccf5b975f 100644 --- a/lisp/cedet/pulse.el +++ b/lisp/cedet/pulse.el @@ -71,7 +71,9 @@ Any other value means to do the default pulsing behavior. If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then this flag is ignored." :group 'pulse - :type 'boolean) + :type '(choice (const :tag "Highlight with unchanging color" nil) + (const :tag "No highlight" never) + (other :tag "Pulse" t))) (defface pulse-highlight-start-face '((((class color) (background dark)) -- 2.39.2