aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-04-13 13:03:03 +0300
committerEli Zaretskii2025-04-13 13:03:03 +0300
commitf5b59a8a7318d611a04ef32f4042e3ca9bd1b315 (patch)
treea2d222e5ce5b3f209bff3543e144063b53e3c3e0
parent53bd9f54c61d5edac8b04cc6b72aadb48466110e (diff)
downloademacs-f5b59a8a7318d611a04ef32f4042e3ca9bd1b315.tar.gz
emacs-f5b59a8a7318d611a04ef32f4042e3ca9bd1b315.zip
; Fix last change
* lisp/progmodes/elisp-mode.el (elisp-eldoc-docstring-length-limit): * etc/NEWS: Fix documentation of last change. (Bug#77628)
-rw-r--r--etc/NEWS8
-rw-r--r--lisp/progmodes/elisp-mode.el2
2 files changed, 5 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8957534d238..1651a13e88e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -612,10 +612,10 @@ Otherwise, if set to 'full', display the full docstring.
612 612
613--- 613---
614*** New user option 'elisp-eldoc-docstring-length-limit'. 614*** New user option 'elisp-eldoc-docstring-length-limit'.
615This user option controls maximum docstring character limit displayed by 615This user option controls the maximum length of doc strings in character
616'elisp-eldoc-funcall-with-docstring' and 616units that 'elisp-eldoc-funcall-with-docstring' and
617'elisp-eldoc-var-docstring-with-value'. By default it is set to 1000 617'elisp-eldoc-var-docstring-with-value' will shopw. By default it is set
618characters 618to 1000 characters.
619 619
620** Buffer Menu 620** Buffer Menu
621 621
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index bcd6d02ae8f..5dc6a748e31 100644
--- a/lisp/progmodes/elisp-mode.el
+++ b/lisp/progmodes/elisp-mode.el
@@ -1846,7 +1846,7 @@ Intended for `eldoc-documentation-functions' (which see)."
1846 'font-lock-keyword-face))))) 1846 'font-lock-keyword-face)))))
1847 1847
1848(defcustom elisp-eldoc-docstring-length-limit 1000 1848(defcustom elisp-eldoc-docstring-length-limit 1000
1849 "Maximum docstring character limit displayed by elisp eldoc functions." 1849 "Maximum length of doc strings displayed by elisp ElDoc functions."
1850 :type 'natnum 1850 :type 'natnum
1851 :group 'elisp 1851 :group 'elisp
1852 :version "31.1") 1852 :version "31.1")