1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-21 10:24:55 +00:00

custom-buffer-style doc fix

* lisp/cus-edit.el (custom-buffer-style): Document the `tree'
value (bug#20724).

(cherry picked from commit bcf0291d0c)
This commit is contained in:
Lars Ingebrigtsen 2016-04-30 21:43:18 +02:00
parent ef32be609d
commit 6d8c2d0fdc

View File

@ -1499,11 +1499,12 @@ Return non-nil if user chooses to customize, for use in
(defcustom custom-buffer-style 'links
"Control the presentation style for customization buffers.
The value should be a symbol, one of:
brackets: groups nest within each other with big horizontal brackets.
links: groups have links to subgroups."
`brackets': groups nest within each other with big horizontal brackets.
`links': groups have links to subgroups.
`tree': display groups as trees."
:type '(radio (const brackets)
(const links))
(const links)
(const tree))
:group 'custom-buffer)
(defcustom custom-buffer-done-kill nil