From: Stefan Kangas Date: Tue, 27 Apr 2021 20:53:04 +0000 (+0200) Subject: Avoid missing whitespace in help-for-help X-Git-Tag: emacs-28.0.90~2686 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ab8d1ee3bd14a388ba3c3391257c337ad39c719;p=emacs.git 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 . --- 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)) ""))