You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2011/08/31 19:19:07 UTC

svn commit: r1163711 - /subversion/trunk/subversion/libsvn_client/repos_diff.c

Author: julianfoad
Date: Wed Aug 31 17:19:07 2011
New Revision: 1163711

URL: http://svn.apache.org/viewvc?rev=1163711&view=rev
Log:
* subversion/libsvn_client/repos_diff.c
  (svn_client__get_diff_editor): Revert some more debugging added in r1163704.

Modified:
    subversion/trunk/subversion/libsvn_client/repos_diff.c

Modified: subversion/trunk/subversion/libsvn_client/repos_diff.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/repos_diff.c?rev=1163711&r1=1163710&r2=1163711&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/repos_diff.c (original)
+++ subversion/trunk/subversion/libsvn_client/repos_diff.c Wed Aug 31 17:19:07 2011
@@ -48,7 +48,6 @@
 #include "client.h"
 
 #include "private/svn_wc_private.h"
-#include "../libsvn_delta/debug_editor.h"
 
 /* Overall crawler editor baton.  */
 struct edit_baton {
@@ -1395,7 +1394,8 @@ svn_client__get_diff_editor(const svn_de
   tree_editor->absent_directory = absent_directory;
   tree_editor->absent_file = absent_file;
 
-  return svn_delta__get_debug_editor(editor, edit_baton,
-                                     tree_editor, eb,
-                                     eb->pool);
+  return svn_delta_get_cancellation_editor(cancel_func, cancel_baton,
+                                           tree_editor, eb,
+                                           editor, edit_baton,
+                                           eb->pool);
 }