diff options
author | Eli Zaretskii <eliz@gnu.org> | 2020-01-10 21:02:52 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2020-01-10 21:02:52 +0200 |
commit | 91cd3c13722976b6ed47da98fdda49358f801356 (patch) | |
tree | ab8db0c01757f7cc36c161fd3ea68f8d429ecd2d /lisp | |
parent | 15c8e984ae5246d19d3eccc59fa6c911ffa4da32 (diff) | |
download | emacs-91cd3c13722976b6ed47da98fdda49358f801356.tar.gz emacs-91cd3c13722976b6ed47da98fdda49358f801356.tar.bz2 emacs-91cd3c13722976b6ed47da98fdda49358f801356.zip |
Fix horizontal line display in Custom buffers
* lisp/cus-edit.el (custom-group-value-create): Insert a newline
before calling 'custom-group--draw-horizontal-line'. (Bug#39074)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/cus-edit.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 79c235783d3..0ca3f1ede85 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4295,6 +4295,7 @@ This works for both graphical and text displays." (widget-put widget :children children) (custom-group-state-update widget)) ;; End line + (insert "\n") (custom-group--draw-horizontal-line))))) (defvar custom-group-menu |