]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix pulse-flag :type
authorMauro Aranda <maurooaranda@gmail.com>
Wed, 4 Oct 2023 13:47:51 +0000 (10:47 -0300)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 4 Oct 2023 14:19:20 +0000 (16:19 +0200)
* lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as
value.  (Bug#66341)

lisp/cedet/pulse.el

index 37b41fbe8c38dbbbab45a34f307b74cf7f191008..38ccf5b975f84f4e270f54708b877f0ae46ab293 100644 (file)
@@ -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))