summaryrefslogtreecommitdiff
path: root/lisp/vc/vc-dav.el
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2014-12-14 12:49:08 +0200
committerDmitry Gutov <dgutov@yandex.ru>2014-12-14 12:49:08 +0200
commit01b97f9df2d94e1e1c31517e084bf8d76174e1d4 (patch)
tree5a2c04ab23b497e86b452d2ee5f903196bb9940f /lisp/vc/vc-dav.el
parentf8f73570a89975fabb587b490b3ccb6a40e8aee1 (diff)
downloademacs-01b97f9df2d94e1e1c31517e084bf8d76174e1d4.tar.gz
Move VC diff ASYNC argument to the fifth position
* lisp/vc/vc-svn.el (vc-svn-diff): * lisp/vc/vc-src.el (vc-src-diff): * lisp/vc/vc-sccs.el (vc-sccs-diff): * lisp/vc/vc-rcs.el (vc-rcs-diff): * lisp/vc/vc-mtn.el (vc-mtn-diff): * lisp/vc/vc-hg.el (vc-hg-diff): * lisp/vc/vc-git.el (vc-git-diff): * lisp/vc/vc-dav.el (vc-dav-diff): * lisp/vc/vc-cvs.el (vc-cvs-diff): * lisp/vc/vc-bzr.el (vc-bzr-diff): * lisp/obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end. * lisp/vc/vc.el (vc-diff-internal): Pass `async' argument to the backend `diff' command in the last position.
Diffstat (limited to 'lisp/vc/vc-dav.el')
-rw-r--r--lisp/vc/vc-dav.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-dav.el b/lisp/vc/vc-dav.el
index 4c3fe6abff7..f107764f404 100644
--- a/lisp/vc/vc-dav.el
+++ b/lisp/vc/vc-dav.el
@@ -117,7 +117,7 @@ only needs to update the status of URL within the backend.
"Insert the revision log of URL into the *vc* buffer."
)
-(defun vc-dav-diff (url &optional async rev1 rev2)
+(defun vc-dav-diff (url &optional rev1 rev2 buffer async)
"Insert the diff for URL into the *vc-diff* buffer.
If REV1 and REV2 are non-nil report differences from REV1 to REV2.
If REV1 is nil, use the current workfile version as the older version.