Function: eldoc-documentation-default

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

Signature

(eldoc-documentation-default)

Documentation

Show the first non-nil documentation string for item at point.

This is the default value for eldoc-documentation-strategy.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defun eldoc-documentation-default ()
  "Show the first non-nil documentation string for item at point.
This is the default value for `eldoc-documentation-strategy'."
  (run-hook-wrapped 'eldoc-documentation-functions
                    (lambda (f)
                      (funcall f (eldoc--make-callback :eager f)))))