]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-workfile-unchanged-p): Disable mtime check when we go via Tramp or
authorAndré Spiegel <spiegel@gnu.org>
Fri, 1 Apr 2005 17:21:52 +0000 (17:21 +0000)
committerAndré Spiegel <spiegel@gnu.org>
Fri, 1 Apr 2005 17:21:52 +0000 (17:21 +0000)
Ange-FTP.  Suggested by Kai Grossjohann.

lisp/vc-hooks.el

index 81a18eadd875ef0125042f672c69331cbeed9e50..52b4659cec617e8328a200c0dd68a5539c33313e 100644 (file)
@@ -481,7 +481,9 @@ and does not employ any heuristic at all."
   "Return non-nil if FILE has not changed since the last checkout."
   (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
         (lastmod (nth 5 (file-attributes file))))
-    (if checkout-time
+    (if (and checkout-time
+             ;; Tramp and Ange-FTP return this when they don't know the time.
+             (not (equal lastmod '(0 0))))
         (equal checkout-time lastmod)
       (let ((unchanged (vc-call workfile-unchanged-p file)))
         (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))