diff options
| author | Mauro Aranda | 2023-10-04 10:47:51 -0300 |
|---|---|---|
| committer | Stefan Kangas | 2023-10-04 16:19:20 +0200 |
| commit | 3216cd96952c5fa0fbe665ef219210c9ebaf4e75 (patch) | |
| tree | ef20f853f702f4b1d23c8aee7c2326466d8d5673 | |
| parent | 2065ab5562e87bc5f4900f60459597356afe22df (diff) | |
| download | emacs-3216cd96952c5fa0fbe665ef219210c9ebaf4e75.tar.gz emacs-3216cd96952c5fa0fbe665ef219210c9ebaf4e75.zip | |
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.el | 4 |
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. | |||
| 71 | If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then | 71 | If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then |
| 72 | this flag is ignored." | 72 | this flag is ignored." |
| 73 | :group 'pulse | 73 | :group 'pulse |
| 74 | :type 'boolean) | 74 | :type '(choice (const :tag "Highlight with unchanging color" nil) |
| 75 | (const :tag "No highlight" never) | ||
| 76 | (other :tag "Pulse" t))) | ||
| 75 | 77 | ||
| 76 | (defface pulse-highlight-start-face | 78 | (defface pulse-highlight-start-face |
| 77 | '((((class color) (background dark)) | 79 | '((((class color) (background dark)) |