summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-09-10 01:32:24 +0200
committerStefan Kangas <stefan@marxist.se>2020-09-13 15:05:02 +0200
commit1b0a922a19bf7b380abe89a4e92176c779c26c2d (patch)
treee4997e73bc598d8c333a7e5fa67393cbb51c2436 /lisp/simple.el
parent9ca83cdd79747fb09f714593243060b17b34e039 (diff)
downloademacs-1b0a922a19bf7b380abe89a4e92176c779c26c2d.tar.gz
emacs-1b0a922a19bf7b380abe89a4e92176c779c26c2d.tar.bz2
emacs-1b0a922a19bf7b380abe89a4e92176c779c26c2d.zip
Make M-x show obsolete commands (Bug#43300)
* 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.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el21
1 files changed, 8 insertions, 13 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index b5002dd1898..16ff8637b95 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -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.