diff options
| author | Lars Ingebrigtsen | 2016-04-30 21:43:18 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-01 19:27:15 +0200 |
| commit | 6d8c2d0fdcde087514625688c1d1966df0dfdb42 (patch) | |
| tree | 896f18635e31f4966d02c28d444da2a6020e852a | |
| parent | ef32be609def28e77e0652a778239bb920569466 (diff) | |
| download | emacs-6d8c2d0fdcde087514625688c1d1966df0dfdb42.tar.gz emacs-6d8c2d0fdcde087514625688c1d1966df0dfdb42.zip | |
custom-buffer-style doc fix
* lisp/cus-edit.el (custom-buffer-style): Document the `tree'
value (bug#20724).
(cherry picked from commit bcf0291d0cd02095b0809b1eb91f1e5c5c2ac5e3)
| -rw-r--r-- | lisp/cus-edit.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 9609a034c97..d7db3530099 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1499,11 +1499,12 @@ Return non-nil if user chooses to customize, for use in | |||
| 1499 | (defcustom custom-buffer-style 'links | 1499 | (defcustom custom-buffer-style 'links |
| 1500 | "Control the presentation style for customization buffers. | 1500 | "Control the presentation style for customization buffers. |
| 1501 | The value should be a symbol, one of: | 1501 | The value should be a symbol, one of: |
| 1502 | 1502 | `brackets': groups nest within each other with big horizontal brackets. | |
| 1503 | brackets: groups nest within each other with big horizontal brackets. | 1503 | `links': groups have links to subgroups. |
| 1504 | links: groups have links to subgroups." | 1504 | `tree': display groups as trees." |
| 1505 | :type '(radio (const brackets) | 1505 | :type '(radio (const brackets) |
| 1506 | (const links)) | 1506 | (const links) |
| 1507 | (const tree)) | ||
| 1507 | :group 'custom-buffer) | 1508 | :group 'custom-buffer) |
| 1508 | 1509 | ||
| 1509 | (defcustom custom-buffer-done-kill nil | 1510 | (defcustom custom-buffer-done-kill nil |