changeset 67565:72450e5d47ba

(isearch-query-replace): Check for isearch-other-end.
author Juri Linkov <juri@jurta.org>
date Wed, 14 Dec 2005 07:49:42 +0000
parents 5319896d557e
children e8e39ab46dd8
files lisp/isearch.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Wed Dec 14 07:48:11 2005 +0000
+++ b/lisp/isearch.el	Wed Dec 14 07:49:42 2005 +0000
@@ -1224,7 +1224,8 @@
   (let ((case-fold-search isearch-case-fold-search))
     (isearch-done)
     (isearch-clean-overlays)
-    (if (and (< isearch-other-end (point))
+    (if (and isearch-other-end
+	     (< isearch-other-end (point))
              (not (and transient-mark-mode mark-active
                        (< isearch-opoint (point)))))
         (goto-char isearch-other-end))