You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/02/24 09:17:32 UTC

svn commit: r1293129 - /subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c

Author: stsp
Date: Fri Feb 24 08:17:32 2012
New Revision: 1293129

URL: http://svn.apache.org/viewvc?rev=1293129&view=rev
Log:
On the multi-layer-moves branch, add a comment.

* subversion/libsvn_wc/wc_db.c
  (delete_node): Add a comment to clarify intentions.

Modified:
    subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c

Modified: subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c?rev=1293129&r1=1293128&r2=1293129&view=diff
==============================================================================
--- subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/branches/multi-layer-moves/subversion/libsvn_wc/wc_db.c Fri Feb 24 08:17:32 2012
@@ -6445,6 +6445,9 @@ delete_node(void *baton,
         }
     }
 
+  /* Find children that were moved out of the subtree rooted at this node.
+   * We'll need to update their op-depth columns because their deletion
+   * is now implied by the deletion of their parent (i.e. this node). */
   if (kind == svn_kind_dir)
     {
       apr_pool_t *iterpool;