From 2ab8d1ee3bd14a388ba3c3391257c337ad39c719 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 27 Apr 2021 22:53:04 +0200 Subject: [PATCH] Avoid missing whitespace in help-for-help * lisp/help.el (help--for-help-make-commands): Avoid missing whitespace before description of command. Problem reported by Dmitry Gutov . --- lisp/help.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/help.el b/lisp/help.el index 63f9974ef6d..85312a411ad 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -210,6 +210,7 @@ Do not call this in the scope of `with-help-window'." ;; "RET" so we can't use it here. (propertize name 'face 'help-key-binding) (concat "\\[" name "]")) + " " ; ensure we have some whitespace before the description (propertize "\t" 'display '(space :align-to 8)) desc)) "")) -- 2.39.5