summaryrefslogtreecommitdiff
path: root/lisp/isearch.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-08-09 12:16:15 +0200
committerStefan Kangas <stefan@marxist.se>2022-08-09 13:20:00 +0200
commit4abeb61fc966fe708b26abcad13fc229ed44bc5d (patch)
tree4c45acd9e90cf9e8d608bbc9069daa2829ca73b3 /lisp/isearch.el
parent5c3c18816e1cc75f5f343423c0084c709bcd5080 (diff)
downloademacs-4abeb61fc966fe708b26abcad13fc229ed44bc5d.tar.gz
* lisp/isearch.el (isearch-mode-help): Make compat alias obsolete.
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r--lisp/isearch.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 336c5f1bde2..31fcf01949f 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -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)
-
;; 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