Fix pulse-flag :type
* lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as value. (Bug#66341)
This commit is contained in:
parent
2065ab5562
commit
3216cd9695
1 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue