]> git.eshelyaron.com Git - emacs.git/commitdiff
Make M-x show what aliases point to (Bug#43300)
authorStefan Kangas <stefan@marxist.se>
Wed, 9 Sep 2020 23:42:53 +0000 (01:42 +0200)
committerStefan Kangas <stefan@marxist.se>
Sun, 13 Sep 2020 13:05:06 +0000 (15:05 +0200)
* lisp/simple.el (read-extended-command--annotation): Show an
annotation for aliases saying what it points to.

lisp/simple.el

index 16ff8637b958e5f3cb026c652a0a62165941be24..b00f6bba06daa62e5165b86f2898505797de833b 100644 (file)
@@ -1887,8 +1887,11 @@ to get different commands to edit and resubmit."
 (defun read-extended-command--annotation (command-name)
   (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
+         (obsolete (get fun 'byte-obsolete-info))
+         (alias (symbol-function fun)))
+    (cond ((symbolp alias)
+           (format " (%s)" alias))
+          (obsolete
            (format " (%s)" (car obsolete)))
           ((and binding (not (stringp binding)))
            (format " (%s)" (key-description binding))))))