+2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * vc-dir.el (vc-dir-recompute-file-state): Add workaround for CVS.
+
2008-07-21 Chong Yidong <cyd@stupidchicken.com>
* menu-bar.el (menu-bar-line-wrapping-menu): Use Visual Line mode
(defun vc-dir-recompute-file-state (fname def-dir)
(let* ((file-short (file-relative-name fname def-dir))
+ (remove-me-when-CVS-works
+ (when (eq vc-dir-backend 'CVS)
+ ;; FIXME: Warning: UGLY HACK. The CVS backend caches the state
+ ;; info, this forces the backend to update it.
+ (vc-call-backend vc-dir-backend 'registered fname))
(state (vc-call-backend vc-dir-backend 'state fname))
(extra (vc-call-backend vc-dir-backend
'status-fileinfo-extra fname)))