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 | |
| parent | 08fea928870ca809d9d4cae2b6b9f829cb6280b4 (diff) | |
| download | emacs-20f8ac737b3e00a8a03bc76591c68bb76c339a6e.tar.gz | |
(vc-svn-diff-tree): Pass a list to vc-svn-diff.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-svn.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 255aad43bc4..c63c019d5ab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-08-31 Dan Nicolaescu <dann@ics.uci.edu> + + * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff. + 2007-08-31 Micha,Ak(Bl Cadilhac <michael@cadilhac.name> * textmodes/flyspell.el (flyspell-mark-duplications-exceptions): 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 |
