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 2018/12/10 13:26:24 UTC

svn commit: r1848576 - /subversion/trunk/subversion/libsvn_client/copy.c

Author: julianfoad
Date: Mon Dec 10 13:26:24 2018
New Revision: 1848576

URL: http://svn.apache.org/viewvc?rev=1848576&view=rev
Log:
* subversion/libsvn_client/copy.c
  (repos_to_wc_copy_single): Update comments, following r1847206.

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

Modified: subversion/trunk/subversion/libsvn_client/copy.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/copy.c?rev=1848576&r1=1848575&r2=1848576&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/copy.c (original)
+++ subversion/trunk/subversion/libsvn_client/copy.c Mon Dec 10 13:26:24 2018
@@ -2718,8 +2718,7 @@ repos_to_wc_copy_single(svn_boolean_t *t
 
   if (same_repositories)
     {
-      /* Record the implied mergeinfo (before the notification callback
-         is invoked for the root node). */
+      /* Record the implied mergeinfo. */
       SVN_ERR(svn_client__get_repos_mergeinfo(&src_mergeinfo, ra_session,
                                               pair->src_abspath_or_url,
                                               pair->src_revnum,
@@ -2729,6 +2728,7 @@ repos_to_wc_copy_single(svn_boolean_t *t
       SVN_ERR(extend_wc_mergeinfo(dst_abspath, src_mergeinfo, ctx, pool));
 
       /* ### Maybe the notification should mention this mergeinfo change. */
+      /* ### Maybe we should do this during rather than after the copy. */
     }
 
   return SVN_NO_ERROR;