summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2023-10-04 10:47:51 -0300
committerStefan Kangas <stefankangas@gmail.com>2023-10-04 16:19:20 +0200
commit3216cd96952c5fa0fbe665ef219210c9ebaf4e75 (patch)
treeef20f853f702f4b1d23c8aee7c2326466d8d5673
parent2065ab5562e87bc5f4900f60459597356afe22df (diff)
downloademacs-3216cd96952c5fa0fbe665ef219210c9ebaf4e75.tar.gz
Fix pulse-flag :type
* lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as value. (Bug#66341)
-rw-r--r--lisp/cedet/pulse.el4
1 files changed, 3 insertions, 1 deletions
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))