diff options
| -rw-r--r-- | lisp/isearch.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 241c69fe087..ec7005ce9d8 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> | 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> |
| 6 | 6 | ||
| 7 | ;; |$Date: 1993/07/02 21:34:15 $|$Revision: 1.44 $ | 7 | ;; |$Date: 1993/07/08 22:33:57 $|$Revision: 1.45 $ |
| 8 | 8 | ||
| 9 | ;; This file is not yet part of GNU Emacs, but it is based almost | 9 | ;; This file is not yet part of GNU Emacs, but it is based almost |
| 10 | ;; entirely on isearch.el which is part of GNU Emacs. | 10 | ;; entirely on isearch.el which is part of GNU Emacs. |
| @@ -675,7 +675,7 @@ If first char entered is \\[isearch-yank-word], then do word search instead." | |||
| 675 | ;; Editing doesn't back up the search point. Should it? | 675 | ;; Editing doesn't back up the search point. Should it? |
| 676 | (interactive) | 676 | (interactive) |
| 677 | (condition-case err | 677 | (condition-case err |
| 678 | (let (isearch-nonincremental ; should search nonincrementally? | 678 | (let ((isearch-nonincremental isearch-nonincremental) |
| 679 | 679 | ||
| 680 | ;; Locally bind all isearch global variables to protect them | 680 | ;; Locally bind all isearch global variables to protect them |
| 681 | ;; from recursive isearching. | 681 | ;; from recursive isearching. |