Function: help-highlight-arg
help-highlight-arg is a byte-compiled function defined in
help-fns.el.gz.
Signature
(help-highlight-arg ARG)
Documentation
Highlight ARG as an argument name for a *Help* buffer.
Return ARG in face help-argument-name; ARG is also downcased
if the variable help-downcase-arguments is non-nil.
Source Code
;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-highlight-arg (arg)
"Highlight ARG as an argument name for a *Help* buffer.
Return ARG in face `help-argument-name'; ARG is also downcased
if the variable `help-downcase-arguments' is non-nil."
(propertize (if help-downcase-arguments (downcase arg) arg)
'face 'help-argument-name))