Function: help-fns--var-alias
help-fns--var-alias is a byte-compiled function defined in
help-fns.el.gz.
Signature
(help-fns--var-alias VARIABLE)
Source Code
;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
(defun help-fns--var-alias (variable)
;; Mention if it's an alias.
(let ((alias (condition-case nil
(indirect-variable variable)
(error variable))))
(unless (eq alias variable)
(princ (format-message
" This variable is an alias for `%s'.\n"
alias)))))