aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-08-31 14:07:49 +0000
committerDan Nicolaescu2007-08-31 14:07:49 +0000
commit20f8ac737b3e00a8a03bc76591c68bb76c339a6e (patch)
tree016460e423e36da817010c4c77d258910538d905
parent08fea928870ca809d9d4cae2b6b9f829cb6280b4 (diff)
downloademacs-20f8ac737b3e00a8a03bc76591c68bb76c339a6e.tar.gz
emacs-20f8ac737b3e00a8a03bc76591c68bb76c339a6e.zip
(vc-svn-diff-tree): Pass a list to vc-svn-diff.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-svn.el2
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 @@
12007-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
12007-08-31 Micha,Ak(Bl Cadilhac <michael@cadilhac.name> 52007-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