Fix pulse-flag :type
* lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as value. (Bug#66341)
This commit is contained in:
committed by
Stefan Kangas
parent
2065ab5562
commit
3216cd9695
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user