diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-08-31 14:07:49 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-08-31 14:07:49 +0000 |
| commit | 20f8ac737b3e00a8a03bc76591c68bb76c339a6e (patch) | |
| tree | 016460e423e36da817010c4c77d258910538d905 /lisp/vc-svn.el | |
| parent | 08fea928870ca809d9d4cae2b6b9f829cb6280b4 (diff) | |
| download | emacs-20f8ac737b3e00a8a03bc76591c68bb76c339a6e.tar.gz | |
(vc-svn-diff-tree): Pass a list to vc-svn-diff.
Diffstat (limited to 'lisp/vc-svn.el')
| -rw-r--r-- | lisp/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 0b34c30f630..7dc0bea54d8 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -433,7 +433,7 @@ The changes are between FIRST-VERSION and SECOND-VERSION." (defun vc-svn-diff-tree (dir &optional rev1 rev2) "Diff all files at and below DIR." - (vc-svn-diff (file-name-as-directory dir) rev1 rev2)) + (vc-svn-diff (list (file-name-as-directory dir)) rev1 rev2)) ;;; ;;; Snapshot system |
