mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 03:13:24 +00:00
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
|
If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then
|
||||||
this flag is ignored."
|
this flag is ignored."
|
||||||
:group 'pulse
|
: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
|
(defface pulse-highlight-start-face
|
||||||
'((((class color) (background dark))
|
'((((class color) (background dark))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue