Function: info-lookup--expand-info

info-lookup--expand-info is a byte-compiled function defined in info-look.el.gz.

Signature

(info-lookup--expand-info INFO)

Source Code

;; Defined in /usr/src/emacs/lisp/info-look.el.gz
(defun info-lookup--expand-info (info)
  ;; We have a dynamic doc-spec function.
  (when (and (null (nth 3 info))
             (nth 6 info)
             (functionp (nth 6 info)))
    (setf (nth 3 info) (funcall (nth 6 info))
          (nth 6 info) nil))
  info)