aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-05-07 01:33:23 +0000
committerKarl Heuer <[email protected]>1994-05-07 01:33:23 +0000
commit8eb40e74cd3c2134dde21cdcdc37db55cbb66954 (patch)
treed9bfe2df59dd92f6e30ac1c4097a7af2aec1e406
parent19134c18f4df3deee1aad2f7659aa9ca582d1104 (diff)
(isearch-edit-string): Doc fix.
(isearch-message-prefix): Initialize `isearch-within-brackets'.
-rw-r--r--lisp/isearch.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 20d85caf6f..98bb768a13 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -4,7 +4,7 @@
;; Author: Daniel LaLiberte <[email protected]>
-;; |$Date: 1994/05/03 08:27:40 $|$Revision: 1.66 $
+;; |$Date: 1994/05/03 22:34:16 $|$Revision: 1.67 $
;; This file is part of GNU Emacs.
@@ -669,11 +669,11 @@ The following additional command keys are active while editing.
\\[exit-minibuffer] to resume incremental searching with the edited string.
\\[isearch-nonincremental-exit-minibuffer] to do one nonincremental search.
\\[isearch-forward-exit-minibuffer] to resume isearching forward.
-\\[isearch-backward-exit-minibuffer] to resume isearching backward.
+\\[isearch-reverse-exit-minibuffer] to resume isearching backward.
\\[isearch-ring-advance-edit] to replace the search string with the next item in the search ring.
\\[isearch-ring-retreat-edit] to replace the search string with the previous item in the search ring.
\\[isearch-complete-edit] to complete the search string using the search ring.
-
+\\<isearch-mode-map>
If first char entered is \\[isearch-yank-word], then do word search instead."
;; This code is very hairy for several reasons, explained in the code.
@@ -1295,7 +1295,8 @@ If there is no completion possible, say so and continue searching."
(and isearch-invalid-regexp ellipsis
(condition-case ()
(progn (re-search-forward isearch-string (point) t)
- (setq isearch-invalid-regexp nil))
+ (setq isearch-invalid-regexp nil
+ isearch-within-brackets nil))
(error nil)))
;; If currently failing, display no ellipsis.
(or isearch-success (setq ellipsis nil))