]> git.eshelyaron.com Git - emacs.git/commitdiff
Make M-x show obsolete commands (Bug#43300)
authorStefan Kangas <stefan@marxist.se>
Wed, 9 Sep 2020 23:32:24 +0000 (01:32 +0200)
committerStefan Kangas <stefan@marxist.se>
Sun, 13 Sep 2020 13:05:02 +0000 (15:05 +0200)
* lisp/simple.el (read-extended-command): Don't hide obsolete
commands.
(read-extended-command--annotation): Show an annotation for obsolete
commands that says what their new name is.

lisp/simple.el

index b5002dd1898aac546fe1ded03f5e89a3058b8d17..16ff8637b958e5f3cb026c652a0a62165941be24 100644 (file)
@@ -1881,22 +1881,17 @@ to get different commands to edit and resubmit."
           '(metadata
             (annotation-function . read-extended-command--annotation)
             (category . command))
-         (let ((pred
-                (if (memq action '(nil t))
-                    ;; Exclude obsolete commands from completions.
-                    (lambda (sym)
-                      (and (funcall pred sym)
-                           (or (equal string (symbol-name sym))
-                               (not (get sym 'byte-obsolete-info)))))
-                  pred)))
-           (complete-with-action action obarray string pred))))
+         (complete-with-action action obarray string pred)))
      #'commandp t nil 'extended-command-history)))
 
 (defun read-extended-command--annotation (command-name)
-  (let* ((function (and (stringp command-name) (intern-soft command-name)))
-         (binding (where-is-internal function overriding-local-map t)))
-    (when (and binding (not (stringp binding)))
-      (format " (%s)" (key-description binding)))))
+  (let* ((fun (and (stringp command-name) (intern-soft command-name)))
+         (binding (where-is-internal fun overriding-local-map t))
+         (obsolete (get fun 'byte-obsolete-info)))
+    (cond (obsolete
+           (format " (%s)" (car obsolete)))
+          ((and binding (not (stringp binding)))
+           (format " (%s)" (key-description binding))))))
 
 (defcustom suggest-key-bindings t
   "Non-nil means show the equivalent key-binding when M-x command has one.