branch: elpa/vc-fossil
commit 9d9e0e6a7299d7dc38552132978a2c6d924797ad
Author: venkat <venkat>
Commit: venkat <venkat>
Changes to work with fossil branch venks-emacs tip (Use update current).
---
vc/el/vc-fossil.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/vc/el/vc-fossil.el b/vc/el/vc-fossil.el
index ddb4513..74d372e 100644
--- a/vc/el/vc-fossil.el
+++ b/vc/el/vc-fossil.el
@@ -131,13 +131,13 @@
(defun vc-fossil-dir-status (dir update-function)
"Get Fossil status for all files in a directory"
;(message dir)
- (insert (vc-fossil--run "update" "-n" "-v" "--file" dir))
+ (insert (vc-fossil--run "update" "-n" "-v" "current" dir))
(let* ((result)
(root (vc-fossil-root dir)))
(goto-char (point-min))
(while (not (eobp))
(setq line (buffer-substring-no-properties (point) (line-end-position)))
- (message line)
+ ;(message line)
(setq status-word (car (split-string line)))
(setq state (vc-fossil-state-code status-word))
(setq file (substring line (+ (length status-word) 1)))