diff options
| author | Glenn Morris | 2021-06-01 08:52:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-06-01 08:52:47 -0700 |
| commit | 3dff85419902e52239ea971f8cbde523cc785e5d (patch) | |
| tree | e3e1a28d24af16b9582c40f5c5d3a5c5482f69bd | |
| parent | 8b3291d13442e88bf379d3cad1fcc5094265ded3 (diff) | |
| download | emacs-3dff85419902e52239ea971f8cbde523cc785e5d.tar.gz emacs-3dff85419902e52239ea971f8cbde523cc785e5d.zip | |
Remove unnecessary function declaration in isearch
* lisp/isearch.el (multi-isearch-switch-buffer):
Remove unnecessary declaration (after ldefs-boot update).
| -rw-r--r-- | lisp/isearch.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 33776d8069c..c47c66fc0f7 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -3462,10 +3462,6 @@ Can be changed via `isearch-search-fun-function' for special needs." | |||
| 3462 | (if isearch-forward #'re-search-forward #'re-search-backward) | 3462 | (if isearch-forward #'re-search-forward #'re-search-backward) |
| 3463 | regexp bound noerror count)))) | 3463 | regexp bound noerror count)))) |
| 3464 | 3464 | ||
| 3465 | ;; This is for when we compile this file during bootstrap, with | ||
| 3466 | ;; loaddefs.el still not loaded. | ||
| 3467 | (declare-function multi-isearch-switch-buffer "misearch" ()) | ||
| 3468 | |||
| 3469 | (defun isearch-search-string (string bound noerror) | 3465 | (defun isearch-search-string (string bound noerror) |
| 3470 | "Search for the first occurrence of STRING or its translation. | 3466 | "Search for the first occurrence of STRING or its translation. |
| 3471 | STRING's characters are translated using `translation-table-for-input' | 3467 | STRING's characters are translated using `translation-table-for-input' |