Function: eldoc-documentation-enthusiast

eldoc-documentation-enthusiast is a byte-compiled function defined in eldoc.el.gz.

Signature

(eldoc-documentation-enthusiast)

Documentation

Show most important doc string produced so far.

Meant as a value for eldoc-documentation-strategy.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defun eldoc-documentation-enthusiast ()
  "Show most important doc string produced so far.
Meant as a value for `eldoc-documentation-strategy'."
  (run-hook-wrapped 'eldoc-documentation-functions
                    (lambda (f)
                      (let* ((callback (eldoc--make-callback :enthusiast))
                             (str (funcall f callback)))
                        (if (stringp str) (funcall callback str))
                        nil)))
  t)