You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/04/26 22:02:48 UTC

svn commit: r938215 - /subversion/trunk/subversion/include/private/svn_wc_private.h

Author: cmpilato
Date: Mon Apr 26 20:02:47 2010
New Revision: 938215

URL: http://svn.apache.org/viewvc?rev=938215&view=rev
Log:
* subversion/include/private/svn_wc_private.h
  (svn_wc__node_get_copyfrom_info): Update docstring to clarify pool usage.

Modified:
    subversion/trunk/subversion/include/private/svn_wc_private.h

Modified: subversion/trunk/subversion/include/private/svn_wc_private.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_wc_private.h?rev=938215&r1=938214&r2=938215&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_wc_private.h (original)
+++ subversion/trunk/subversion/include/private/svn_wc_private.h Mon Apr 26 20:02:47 2010
@@ -368,11 +368,12 @@ svn_wc__node_get_url(const char **url,
 
 
 /**
- * Set @a *copyfrom_url to the corresponding copy-from URL, and @a
- * copyfrom_rev to the corresponding copy-from revision, of @a
- * local_abspath, using @a wc_ctx.  Set @a is_copy_target to TRUE iff
- * @a local_abspath was the target of a copy information (versus being
- * a member of the subtree beneath such a copy target).
+ * Set @a *copyfrom_url to the corresponding copy-from URL (allocated
+ * from @a result_pool), and @a copyfrom_rev to the corresponding
+ * copy-from revision, of @a local_abspath, using @a wc_ctx.  Set @a
+ * is_copy_target to TRUE iff @a local_abspath was the target of a
+ * copy information (versus being a member of the subtree beneath such
+ * a copy target).
  *
  * If @a local_abspath is not copied, set @a *copyfrom_rev to NULL and
  * @a *copyfrom_rev to @c SVN_INVALID_REVNUM.