Variable: elisp-eldoc-funcall-with-docstring-length

elisp-eldoc-funcall-with-docstring-length is a customizable variable defined in elisp-mode.el.gz.

Value

short

Documentation

Control length of doc string shown by elisp-eldoc-funcall-with-docstring.

If set to short, only show the first sentence of the doc string. Otherwise if set to full, display full doc string.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defcustom elisp-eldoc-funcall-with-docstring-length 'short
  "Control length of doc string shown by `elisp-eldoc-funcall-with-docstring'.
If set to `short', only show the first sentence of the doc string.
Otherwise if set to `full', display full doc string."
  :type '(choice
          (const :tag "Short" short)
          (const :tag "Full" full))
  :group 'elisp
  :version "31.1")