diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-06-01 00:25:50 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-06-01 00:25:50 +0000 |
commit | f9e66e49d4b89790b8d8c425f69f6a98e9cd1c3e (patch) | |
tree | 6c2b06a0b694d69b5e15d027e1db35e67a09b546 /lisp/vc-arch.el | |
parent | 7bfa55b3580c3d7d4c77bc67ffd621bf5152a513 (diff) | |
download | emacs-f9e66e49d4b89790b8d8c425f69f6a98e9cd1c3e.tar.gz |
(vc-arch-state): Don't assume the file exists.
Diffstat (limited to 'lisp/vc-arch.el')
-rw-r--r-- | lisp/vc-arch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el index 6c67581a5a8..a439174556e 100644 --- a/lisp/vc-arch.el +++ b/lisp/vc-arch.el @@ -272,7 +272,7 @@ Return non-nil if FILE is unchanged." ;; Buh? Unexpected format. 'edited (let ((ats (file-attributes file))) - (if (and (= (nth 7 ats) (string-to-number (match-string 2))) + (if (and (eq (nth 7 ats) (string-to-number (match-string 2))) (equal (format-time-string "%s" (nth 5 ats)) (match-string 1))) 'up-to-date |