Function: help--for-help-make-sections
help--for-help-make-sections is a byte-compiled function defined in
help.el.gz.
Signature
(help--for-help-make-sections SECTIONS)
Documentation
Create sections for help-for-help screen from SECTIONS.
Source Code
;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun help--for-help-make-sections (sections)
"Create sections for `help-for-help' screen from SECTIONS."
(mapconcat
(lambda (section)
(let ((title (car section)) (commands (cdr section)))
(concat
"\n\n"
(propertize title 'face 'help-for-help-header)
"\n\n"
(help--for-help-make-commands commands))))
sections))