]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/isearch.el (isearch-mode-help): Make compat alias obsolete.
authorStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 10:16:15 +0000 (12:16 +0200)
committerStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 11:20:00 +0000 (13:20 +0200)
lisp/isearch.el

index 336c5f1bde2b3a294509b222fdaf74e651c1ce32..31fcf01949f0a38ec9b9ed84bbb4af668910cf07 100644 (file)
@@ -537,8 +537,6 @@ This is like `describe-bindings', but displays only Isearch keys."
     (describe-function 'isearch-forward))
   (when isearch-mode (isearch-update)))
 
-(defalias 'isearch-mode-help 'isearch-describe-mode)
-
 \f
 ;; Define isearch-mode keymap.
 
@@ -4636,6 +4634,8 @@ CASE-FOLD non-nil means the search was case-insensitive."
                        (replace-regexp-in-string "\"" "[\"“”]")))))
     (buffer-local-restore-state isearch-fold-quotes-mode--state)))
 
+(define-obsolete-function-alias 'isearch-mode-help #'isearch-describe-mode "29.1")
+
 (provide 'isearch)
 
 ;;; isearch.el ends here