]> code.delx.au - gnu-emacs/blobdiff - lisp/compare-w.el
(rmail-forward): Delete trailing blank lines.
[gnu-emacs] / lisp / compare-w.el
index 717974b364bb6f8a39ac66a2e255677b07349e59..4f06ef8c53fa84b3266a1debe7c90f2ea03fc61e 100644 (file)
@@ -52,6 +52,12 @@ whitespace is considered to match, and is skipped.")
 Compares the text starting at point in each window,
 moving over text in each one as far as they match.
 
+This command pushes the mark in each window
+at the prior location of point in that window.
+If both windows display the same buffer,
+the mark is pushed twice in that buffer:
+first in the other window, then in the selected window.
+
 A prefix arg means ignore changes in whitespace.
 The variable `compare-windows-whitespace' controls how whitespace is skipped.
 If `compare-ignore-case' is non-nil, changes in case are also ignored."
@@ -72,7 +78,9 @@ If `compare-ignore-case' is non-nil, changes in case are also ignored."
     (setq maxp1 (point-max))
     (save-excursion
       (set-buffer b2)
+      (push-mark p2 t)
       (setq maxp2 (point-max)))
+    (push-mark)
 
     (setq success t)
     (while success
@@ -99,9 +107,10 @@ If `compare-ignore-case' is non-nil, changes in case are also ignored."
                         (compare-windows-skip-whitespace opoint2)
                       (funcall skip-whitespace opoint2)))
               (setq p2a (point))
-              (and result1 result2 (eq result1 result2)
-                   (setq p1 p1a
-                         p2 p2a)))))
+              (if (or (stringp skip-whitespace)
+                      (and result1 result2 (eq result1 result2)))
+                  (setq p1 p1a
+                        p2 p2a)))))
 
       ;; Try advancing comparing 1000 chars at a time.
       ;; When that fails, go 500 chars at a time, and so on.