aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2021-04-24 18:05:15 +0200
committerStefan Kangas2021-04-24 18:05:15 +0200
commitaf464e438004698865eafc1b871d4316cfcd8dad (patch)
tree6343790ebe26c670724723623f8d97da12b0b590
parent1fce52813219d325c7c6f758f082009879e2f234 (diff)
downloademacs-af464e438004698865eafc1b871d4316cfcd8dad.tar.gz
emacs-af464e438004698865eafc1b871d4316cfcd8dad.zip
* lisp/help.el (help--for-help-make-sections): Fix typo.
-rw-r--r--lisp/help.el2
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'."
222 (let ((title (car section)) (commands (cdr section))) 222 (let ((title (car section)) (commands (cdr section)))
223 (concat 223 (concat
224 "\n\n" 224 "\n\n"
225 (propertize (car section) 'face 'help-for-help-header) 225 (propertize title 'face 'help-for-help-header)
226 "\n\n" 226 "\n\n"
227 (help--for-help-make-commands commands)))) 227 (help--for-help-make-commands commands))))
228 sections "")) 228 sections ""))