diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/vc/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-cvs.el b/lisp/vc/vc-cvs.el index 6fb5fa09c7e..b33a106f3a9 100644 --- a/lisp/vc/vc-cvs.el +++ b/lisp/vc/vc-cvs.el | |||
| @@ -1180,7 +1180,7 @@ is non-nil." | |||
| 1180 | (parsed-time (progn (require 'parse-time) | 1180 | (parsed-time (progn (require 'parse-time) |
| 1181 | (parse-time-string (concat time " +0000"))))) | 1181 | (parse-time-string (concat time " +0000"))))) |
| 1182 | (cond ((and (not (string-match "\\+" time)) | 1182 | (cond ((and (not (string-match "\\+" time)) |
| 1183 | (car parsed-time) | 1183 | (decoded-time-second parsed-time) |
| 1184 | ;; Compare just the seconds part of the file time, | 1184 | ;; Compare just the seconds part of the file time, |
| 1185 | ;; since CVS file time stamp resolution is just 1 second. | 1185 | ;; since CVS file time stamp resolution is just 1 second. |
| 1186 | (= (encode-time mtime 'integer) | 1186 | (= (encode-time mtime 'integer) |