]> git.eshelyaron.com Git - emacs.git/commitdiff
(isearch-query-replace): Check for isearch-other-end.
authorJuri Linkov <juri@jurta.org>
Wed, 14 Dec 2005 07:52:22 +0000 (07:52 +0000)
committerJuri Linkov <juri@jurta.org>
Wed, 14 Dec 2005 07:52:22 +0000 (07:52 +0000)
lisp/ChangeLog
lisp/isearch.el

index f1aecc274268c08093a55af1a0c3740d458a7bd5..0493ee83f37ecb8258d5c66fff47677b1ce1e998 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-14  Aaron S. Hawley  <Aaron.Hawley@uvm.edu>
+
+       * isearch.el (isearch-query-replace): Check for isearch-other-end.
+
 2005-12-14  Per Abrahamsen  <abraham@dina.kvl.dk>
 
        * progmodes/cpp.el (cpp-face): New widget.
index 65fc1f0a394e0b19a150df0d9252d2ddf312daaf..6361177a345b62aa0c6a7d54c1f67e92cc051c90 100644 (file)
@@ -1224,7 +1224,8 @@ Use `isearch-exit' to quit without signaling."
   (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))