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 2015/09/21 17:42:59 UTC

svn commit: r1704330 - /subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c

Author: julianfoad
Date: Mon Sep 21 15:42:55 2015
New Revision: 1704330

URL: http://svn.apache.org/viewvc?rev=1704330&view=rev
Log:
On the 'move-tracking-2' branch: Tweak comments.

* subversion/svnmover/svnmover.c
  (show_subtree_diff): Tweak comments.

Modified:
    subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c

Modified: subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c
URL: http://svn.apache.org/viewvc/subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c?rev=1704330&r1=1704329&r2=1704330&view=diff
==============================================================================
--- subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c (original)
+++ subversion/branches/move-tracking-2/subversion/svnmover/svnmover.c Mon Sep 21 15:42:55 2015
@@ -1825,14 +1825,12 @@ show_subtree_diff(svn_editor3_t *editor,
       char status_mod = (e0 && e1) ? 'M' : e0 ? 'D' : 'A';
 
       /* For a deleted element whose parent was also deleted, mark it is
-         less important, somehow. (Or we could omit it entirely.) */
+         less interesting, somehow. (Or we could omit it entirely.) */
       if (status_mod == 'D')
         {
           diff_item_t *parent_item
             = svn_int_hash_get(diff_changes, e0->parent_eid);
 
-          /* If the (left-hand) parent has been deleted (thus it must have
-             changed, given that we currently flattem the trees before diffing them)... */
           if (parent_item && ! parent_item->e1)
             status_mod = 'd';
         }