aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-08-09 12:16:15 +0200
committerStefan Kangas2022-08-09 13:20:00 +0200
commit4abeb61fc966fe708b26abcad13fc229ed44bc5d (patch)
tree4c45acd9e90cf9e8d608bbc9069daa2829ca73b3
parent5c3c18816e1cc75f5f343423c0084c709bcd5080 (diff)
downloademacs-4abeb61fc966fe708b26abcad13fc229ed44bc5d.tar.gz
emacs-4abeb61fc966fe708b26abcad13fc229ed44bc5d.zip
* lisp/isearch.el (isearch-mode-help): Make compat alias obsolete.
-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."
537 (describe-function 'isearch-forward)) 537 (describe-function 'isearch-forward))
538 (when isearch-mode (isearch-update))) 538 (when isearch-mode (isearch-update)))
539 539
540(defalias 'isearch-mode-help 'isearch-describe-mode)
541
542 540
543;; Define isearch-mode keymap. 541;; Define isearch-mode keymap.
544 542
@@ -4636,6 +4634,8 @@ CASE-FOLD non-nil means the search was case-insensitive."
4636 (replace-regexp-in-string "\"" "[\"“”]"))))) 4634 (replace-regexp-in-string "\"" "[\"“”]")))))
4637 (buffer-local-restore-state isearch-fold-quotes-mode--state))) 4635 (buffer-local-restore-state isearch-fold-quotes-mode--state)))
4638 4636
4637(define-obsolete-function-alias 'isearch-mode-help #'isearch-describe-mode "29.1")
4638
4639(provide 'isearch) 4639(provide 'isearch)
4640 4640
4641;;; isearch.el ends here 4641;;; isearch.el ends here