diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2014-12-14 12:49:08 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2014-12-14 12:49:08 +0200 |
commit | 01b97f9df2d94e1e1c31517e084bf8d76174e1d4 (patch) | |
tree | 5a2c04ab23b497e86b452d2ee5f903196bb9940f /lisp/obsolete/vc-arch.el | |
parent | f8f73570a89975fabb587b490b3ccb6a40e8aee1 (diff) | |
download | emacs-01b97f9df2d94e1e1c31517e084bf8d76174e1d4.tar.gz emacs-01b97f9df2d94e1e1c31517e084bf8d76174e1d4.tar.bz2 emacs-01b97f9df2d94e1e1c31517e084bf8d76174e1d4.zip |
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/obsolete/vc-arch.el')
-rw-r--r-- | lisp/obsolete/vc-arch.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/obsolete/vc-arch.el b/lisp/obsolete/vc-arch.el index d1344f2b1cc..c1ac505270c 100644 --- a/lisp/obsolete/vc-arch.el +++ b/lisp/obsolete/vc-arch.el @@ -448,7 +448,7 @@ CALLBACK expects (ENTRIES &optional MORE-TO-COME); see (vc-arch-command nil 0 files "commit" "-s" summary "-L" comment "--" (vc-switches 'Arch 'checkin)))) -(defun vc-arch-diff (files &optional async oldvers newvers buffer) +(defun vc-arch-diff (files &optional oldvers newvers buffer async) "Get a difference report using Arch between two versions of FILES." ;; FIXME: This implementation only works for singleton filesets. To make ;; it work for more cases, we have to either call `file-diffs' manually on |