emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 3216cd96952: Fix pulse-flag :type


From: Stefan Kangas
Subject: emacs-29 3216cd96952: Fix pulse-flag :type
Date: Wed, 4 Oct 2023 10:20:51 -0400 (EDT)

branch: emacs-29
commit 3216cd96952c5fa0fbe665ef219210c9ebaf4e75
Author: Mauro Aranda <maurooaranda@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Fix pulse-flag :type
    
    * lisp/cedet/pulse.el (pulse-flag): Expand :type to allow 'never as
    value.  (Bug#66341)
---
 lisp/cedet/pulse.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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.
 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]