diff options
| author | Eli Zaretskii | 2023-04-24 19:22:44 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2023-04-24 19:22:44 +0300 |
| commit | d18c4ef4feaccf7bad67e6c0c5b00cdadd81ba1a (patch) | |
| tree | 3222c6afabefaceb018bba418c1755f3ef95ab9b | |
| parent | de0b96c4ae745f524d225b7290722aa8e9fef17d (diff) | |
| download | emacs-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.el | 9 |
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'. |
| 732 | This is used as the value of `outline-default-rules' in the | 732 | This is used as the value of `outline-default-rules' in the |
| 733 | output buffer of `describe-bindings' when | 733 | output 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 |
| 735 | doesn't have any effect." | 735 | doesn'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 | ||