diff options
| -rw-r--r-- | lisp/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 45ff233eb86..22346cab68c 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el | |||
| @@ -189,7 +189,7 @@ See also variable `vc-cvs-sticky-date-format-string'." | |||
| 189 | (let ((state (vc-file-getprop file 'vc-state))) | 189 | (let ((state (vc-file-getprop file 'vc-state))) |
| 190 | ;; If we should stay local, use the heuristic but only if | 190 | ;; If we should stay local, use the heuristic but only if |
| 191 | ;; we don't have a more precise state already available. | 191 | ;; we don't have a more precise state already available. |
| 192 | (if (memq state '(up-to-date edited)) | 192 | (if (memq state '(up-to-date edited nil)) |
| 193 | (vc-cvs-state-heuristic file) | 193 | (vc-cvs-state-heuristic file) |
| 194 | state)) | 194 | state)) |
| 195 | (with-temp-buffer | 195 | (with-temp-buffer |