emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 9525315c117: Add missing :version to two defcustoms


From: Stefan Kangas
Subject: emacs-29 9525315c117: Add missing :version to two defcustoms
Date: Sat, 14 Oct 2023 15:00:49 -0400 (EDT)

branch: emacs-29
commit 9525315c1179065b69c937899ea18fe649b0f16f
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>

    Add missing :version to two defcustoms
    
    * lisp/emacs-lisp/eldoc.el (eldoc-print-after-edit)
    (eldoc-echo-area-prefer-doc-buffer): Add missing custom :version.
---
 lisp/emacs-lisp/eldoc.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index 7cd676b8e50..bc498d4372f 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -65,7 +65,8 @@ If this variable is set to 0, display the documentation 
without any delay."
 (defcustom eldoc-print-after-edit nil
   "If non-nil, eldoc info is only shown after editing commands.
 Changing the value requires toggling `eldoc-mode'."
-  :type 'boolean)
+  :type 'boolean
+  :version "24.4")
 
 (defcustom eldoc-echo-area-display-truncation-message t
   "If non-nil, provide verbose help when a message has been truncated.
@@ -134,7 +135,8 @@ some window.  If the value is the symbol `maybe', then the 
echo area
 is only skipped if the documentation needs to be truncated there."
   :type '(choice (const :tag "Prefer ElDoc's documentation buffer" t)
                  (const :tag "Prefer echo area" nil)
-                 (const :tag "Skip echo area if truncating" maybe)))
+                 (const :tag "Skip echo area if truncating" maybe))
+  :version "28.1")
 
 (defface eldoc-highlight-function-argument
   '((t (:inherit bold)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]