1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00

custom-buffer-style doc fix

* lisp/cus-edit.el (custom-buffer-style): Document the `tree'
value (bug#20724).
This commit is contained in:
Lars Ingebrigtsen 2016-04-30 21:43:18 +02:00
parent faf07d6465
commit bcf0291d0c

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