; Fix last change

* lisp/progmodes/elisp-mode.el (elisp-eldoc-docstring-length-limit):
* etc/NEWS: Fix documentation of last change.  (Bug#77628)
This commit is contained in:
Eli Zaretskii 2025-04-13 13:03:03 +03:00
parent 53bd9f54c6
commit f5b59a8a73
2 changed files with 5 additions and 5 deletions

View file

@ -612,10 +612,10 @@ Otherwise, if set to 'full', display the full docstring.
---
*** New user option 'elisp-eldoc-docstring-length-limit'.
This user option controls maximum docstring character limit displayed by
'elisp-eldoc-funcall-with-docstring' and
'elisp-eldoc-var-docstring-with-value'. By default it is set to 1000
characters
This user option controls the maximum length of doc strings in character
units that 'elisp-eldoc-funcall-with-docstring' and
'elisp-eldoc-var-docstring-with-value' will shopw. By default it is set
to 1000 characters.
** Buffer Menu

View file

@ -1846,7 +1846,7 @@ Intended for `eldoc-documentation-functions' (which see)."
'font-lock-keyword-face)))))
(defcustom elisp-eldoc-docstring-length-limit 1000
"Maximum docstring character limit displayed by elisp eldoc functions."
"Maximum length of doc strings displayed by elisp ElDoc functions."
:type 'natnum
:group 'elisp
:version "31.1")