diff options
| author | Tino Calancha | 2018-06-15 16:21:03 +0900 |
|---|---|---|
| committer | Tino Calancha | 2018-06-15 16:21:03 +0900 |
| commit | aeb6b2e31fea5d3fa78e2f8a0895dc86f6b4a7a6 (patch) | |
| tree | f184f7004ccfd1c311deb842c3cb612c63020878 | |
| parent | 4139c98eb5f9003fefe62187e6a60644e38389e9 (diff) | |
| download | emacs-aeb6b2e31fea5d3fa78e2f8a0895dc86f6b4a7a6.tar.gz emacs-aeb6b2e31fea5d3fa78e2f8a0895dc86f6b4a7a6.zip | |
customize-apropos: Separate package name from its description
* lisp/cus-edit.el (custom-group-value-create):
Always insert documentation indented from its package name (Bug#31466).
| -rw-r--r-- | lisp/cus-edit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index a12897e7997..ff6a4f6d33c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -4145,7 +4145,7 @@ If GROUPS-ONLY is non-nil, return only those members that are groups." | |||
| 4145 | ;; Update buttons. | 4145 | ;; Update buttons. |
| 4146 | (widget-put widget :buttons buttons) | 4146 | (widget-put widget :buttons buttons) |
| 4147 | ;; Insert documentation. | 4147 | ;; Insert documentation. |
| 4148 | (if (and (eq custom-buffer-style 'links) (> level 1)) | 4148 | (when (eq custom-buffer-style 'links) |
| 4149 | (widget-put widget :documentation-indent | 4149 | (widget-put widget :documentation-indent |
| 4150 | custom-group-doc-align-col)) | 4150 | custom-group-doc-align-col)) |
| 4151 | (widget-add-documentation-string-button | 4151 | (widget-add-documentation-string-button |