Author: stsp
Date: Wed Jan  4 17:51:02 2012
New Revision: 1227237

URL: http://svn.apache.org/viewvc?rev=1227237&view=rev
Log:
* subversion/libsvn_client/commit_util.c
  (svn_client__harvest_committables): Clarify a comment: The "dangler's" hash
   table does not record locally unversioned parents, but parents that are
   locally added or copied, and therefore (probably) do not yet exist in the
   repository. As written, the comment was misleading because it was talking
   about "unversioned parents", which sound like locally unversioned nodes.

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

Modified: subversion/trunk/subversion/libsvn_client/commit_util.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/commit_util.c?rev=1227237&r1=1227236&r2=1227237&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/commit_util.c (original)
+++ subversion/trunk/subversion/libsvn_client/commit_util.c Wed Jan  4 17:51:02 
2012
@@ -1032,13 +1032,13 @@ svn_client__harvest_committables(svn_cli
    * Since we don't know what's included in the commit until we've
    * harvested all the targets, we can't reliably check this as we
    * go.  So in `danglers', we record named targets whose parents
-   * are unversioned, then after harvesting the total commit group, we
-   * check to make sure those parents are included.
+   * do not yet exist in the repository. Then after harvesting the total
+   * commit group, we check to make sure those parents are included.
    *
-   * Each key of danglers is an unversioned parent.  The (const char *)
-   * value is one of that parent's children which is named as part of
-   * the commit; the child is included only to make a better error
-   * message.
+   * Each key of danglers is a parent which does not exist in the
+   * repository.  The (const char *) value is one of that parent's
+   * children which is named as part of the commit; the child is
+   * included only to make a better error message.
    *
    * (The reason we don't bother to check unnamed -- i.e, implicit --
    * targets is that they can only join the commit if their parents


Reply via email to