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 documentation string produced so far.

This is meant to be used 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 documentation string produced so far.
This is meant to be used as a value for `eldoc-documentation-strategy'."
  (run-hook-wrapped 'eldoc-documentation-functions
                    (lambda (f)
                      (let* ((callback (eldoc--make-callback :enthusiast f))
                             (str (funcall f callback)))
                        (if (stringp str) (funcall callback str))
                        nil)))
  t)