Function: package--print-help-section
package--print-help-section is a byte-compiled function defined in
package.el.gz.
Signature
(package--print-help-section NAME &rest STRINGS)
Documentation
Print "NAME: ", right aligned to the 13th column.
If more STRINGS are provided, insert them followed by a newline. Otherwise no newline is inserted.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/package.el.gz
(defun package--print-help-section (name &rest strings)
"Print \"NAME: \", right aligned to the 13th column.
If more STRINGS are provided, insert them followed by a newline.
Otherwise no newline is inserted."
(declare (indent 1))
(insert (make-string (max 0 (- 11 (string-width name))) ?\s)
(propertize (concat name ": ") 'font-lock-face 'package-help-section-name))
(when strings
(apply #'insert strings)
(insert "\n")))