Function: eldoc-display-in-buffer
eldoc-display-in-buffer is a byte-compiled function defined in
eldoc.el.gz.
Signature
(eldoc-display-in-buffer DOCS INTERACTIVE)
Documentation
Display DOCS in a dedicated buffer.
If INTERACTIVE is t, also display the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/eldoc.el.gz
(defun eldoc-display-in-buffer (docs interactive)
"Display DOCS in a dedicated buffer.
If INTERACTIVE is t, also display the buffer."
(eldoc--format-doc-buffer docs)
(when interactive (eldoc-doc-buffer t)))