aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2023-04-24 19:22:44 +0300
committerEli Zaretskii2023-04-24 19:22:44 +0300
commitd18c4ef4feaccf7bad67e6c0c5b00cdadd81ba1a (patch)
tree3222c6afabefaceb018bba418c1755f3ef95ab9b
parentde0b96c4ae745f524d225b7290722aa8e9fef17d (diff)
downloademacs-d18c4ef4feaccf7bad67e6c0c5b00cdadd81ba1a.tar.gz
emacs-d18c4ef4feaccf7bad67e6c0c5b00cdadd81ba1a.zip
; Fix last change in help.el
* lisp/help.el (describe-bindings-outline-rules): Fix :type. Reported by Robert Pluim <rpluim@gmail.com>.
-rw-r--r--lisp/help.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 886c6e0acc8..4c5382ff285 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -728,12 +728,17 @@ Return nil if KEYS is nil."
728 :version "29.1") 728 :version "29.1")
729 729
730(defcustom describe-bindings-outline-rules '((match-regexp . "Key translations")) 730(defcustom describe-bindings-outline-rules '((match-regexp . "Key translations"))
731 "Visibility rules for outlines in the output buffer of `describe-bindings'. 731 "Visibility rules for outline sections of `describe-bindings'.
732This is used as the value of `outline-default-rules' in the 732This is used as the value of `outline-default-rules' in the
733output buffer of `describe-bindings' when 733output buffer of `describe-bindings' when
734`describe-bindings-outline' is non-nil, otherwise this option 734`describe-bindings-outline' is non-nil, otherwise this option
735doesn't have any effect." 735doesn't have any effect."
736 :type 'boolean 736 :type '(choice (const :tag "Hide unconditionally" nil)
737 (set :tag "Show section unless"
738 (cons :tag "Heading matches regexp"
739 (const match-regexp) string)
740 (cons :tag "Custom function returns non-nil"
741 (const custom-function) function)))
737 :group 'help 742 :group 'help
738 :version "30.1") 743 :version "30.1")
739 744