diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-02-07 02:35:24 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-02-07 02:35:24 +0300 |
commit | fa7f79e8234c60ae425f7c3cf1b9486765a7111e (patch) | |
tree | 784a95feb5177eef80f0a48590a664abc1d32857 /lisp/vc/vc-cvs.el | |
parent | 7eb2077f9dd14ae9d70a12c621151afd50ea6e96 (diff) | |
download | emacs-fa7f79e8234c60ae425f7c3cf1b9486765a7111e.tar.gz |
(vc-cvs-dir-status-files): Don't pass DIR to `vc-cvs-command'
Fixes: debbugs:19732
* lisp/vc/vc-cvs.el (vc-cvs-dir-status-files): Don't pass DIR to
`vc-cvs-command'.
Diffstat (limited to 'lisp/vc/vc-cvs.el')
-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 d803c16d7cf..707090a10eb 100644 --- a/lisp/vc/vc-cvs.el +++ b/lisp/vc/vc-cvs.el @@ -1076,7 +1076,7 @@ Query all files in DIR if files is nil." (if (and (not files) local (not (eq local 'only-file))) (vc-cvs-dir-status-heuristic dir update-function) (if (not files) (setq files (vc-expand-dirs (list dir) 'CVS))) - (vc-cvs-command (current-buffer) 'async dir "-f" "status" files) + (vc-cvs-command (current-buffer) 'async files "-f" "status") ;; Alternative implementation: use the "update" command instead of ;; the "status" command. ;; (vc-cvs-command (current-buffer) 'async |