emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master f3bd296 2/3: Make two variables for extended comman


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master f3bd296 2/3: Make two variables for extended command suggestions mention each other
Date: Tue, 9 Jul 2019 11:14:02 -0400 (EDT)

branch: master
commit f3bd296a3e00628793d1c2f22f13e81700cbb14d
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Make two variables for extended command suggestions mention each other
    
    * lisp/simple.el (suggest-key-bindings):
    (extended-command-suggest-shorter): Mention each other, because
    they are vaguely related (bug#35309).
---
 lisp/simple.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index 5f27b75..983a3b6 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1784,14 +1784,18 @@ to get different commands to edit and resubmit."
 (defcustom suggest-key-bindings t
   "Non-nil means show the equivalent key-binding when M-x command has one.
 The value can be a length of time to show the message for.
-If the value is non-nil and not a number, we wait 2 seconds."
+If the value is non-nil and not a number, we wait 2 seconds.
+
+Also see `extended-command-suggest-shorter'."
   :group 'keyboard
   :type '(choice (const :tag "off" nil)
                  (integer :tag "time" 2)
                  (other :tag "on")))
 
 (defcustom extended-command-suggest-shorter t
-  "If non-nil, show a shorter M-x invocation when there is one."
+  "If non-nil, show a shorter M-x invocation when there is one.
+
+Also see `suggest-key-bindings'."
   :group 'keyboard
   :type 'boolean
   :version "26.1")



reply via email to

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