diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-04-24 18:05:15 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-04-24 18:05:15 +0200 |
commit | af464e438004698865eafc1b871d4316cfcd8dad (patch) | |
tree | 6343790ebe26c670724723623f8d97da12b0b590 /lisp/help.el | |
parent | 1fce52813219d325c7c6f758f082009879e2f234 (diff) | |
download | emacs-af464e438004698865eafc1b871d4316cfcd8dad.tar.gz emacs-af464e438004698865eafc1b871d4316cfcd8dad.tar.bz2 emacs-af464e438004698865eafc1b871d4316cfcd8dad.zip |
* lisp/help.el (help--for-help-make-sections): Fix typo.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index e98f4f2b7eb..4dcb2353ceb 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -222,7 +222,7 @@ Do not call this in the scope of `with-help-window'." (let ((title (car section)) (commands (cdr section))) (concat "\n\n" - (propertize (car section) 'face 'help-for-help-header) + (propertize title 'face 'help-for-help-header) "\n\n" (help--for-help-make-commands commands)))) sections "")) |