From f9e66e49d4b89790b8d8c425f69f6a98e9cd1c3e Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 1 Jun 2004 00:25:50 +0000 Subject: [PATCH] (vc-arch-state): Don't assume the file exists. --- lisp/vc-arch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5