diff lisp/isearch.el @ 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 e6b4f7137699
children 4b2351f7912e
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))