>From 889dd1b972a72120b51e72d1ac74110891597a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Le=20Gouguec?= Date: Wed, 8 Jan 2020 18:35:49 +0100 Subject: [PATCH] Fix glitch with horizontal lines in Custom buffers Bug introduced in 2019-11-03T16:45:48Z!address@hidden. * lisp/cus-edit.el (custom-group-value-create): add a blank line before drawing the final horizontal line. --- lisp/cus-edit.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 79c235783d..0ca3f1ede8 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -4295,6 +4295,7 @@ custom-group-value-create (widget-put widget :children children) (custom-group-state-update widget)) ;; End line + (insert "\n") (custom-group--draw-horizontal-line))))) (defvar custom-group-menu -- 2.20.1