diff options
| -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 @@ | |||
| 1 | 2007-08-31 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff. | ||
| 4 | |||
| 1 | 2007-08-31 Micha,Ak(Bl Cadilhac <michael@cadilhac.name> | 5 | 2007-08-31 Micha,Ak(Bl Cadilhac <michael@cadilhac.name> |
| 2 | 6 | ||
| 3 | * textmodes/flyspell.el (flyspell-mark-duplications-exceptions): | 7 | * 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." | |||
| 433 | 433 | ||
| 434 | (defun vc-svn-diff-tree (dir &optional rev1 rev2) | 434 | (defun vc-svn-diff-tree (dir &optional rev1 rev2) |
| 435 | "Diff all files at and below DIR." | 435 | "Diff all files at and below DIR." |
| 436 | (vc-svn-diff (file-name-as-directory dir) rev1 rev2)) | 436 | (vc-svn-diff (list (file-name-as-directory dir)) rev1 rev2)) |
| 437 | 437 | ||
| 438 | ;;; | 438 | ;;; |
| 439 | ;;; Snapshot system | 439 | ;;; Snapshot system |