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/10/28 20:18:14 UTC

svn commit: r1028408 - /subversion/trunk/subversion/include/svn_wc.h

Author: cmpilato
Date: Thu Oct 28 18:18:13 2010
New Revision: 1028408

URL: http://svn.apache.org/viewvc?rev=1028408&view=rev
Log:
* subversion/include/svn_wc.h
  (svn_wc_walk_status): Update docstring to describe exactly how the
    external_func is driven by the function.

Modified:
    subversion/trunk/subversion/include/svn_wc.h

Modified: subversion/trunk/subversion/include/svn_wc.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_wc.h?rev=1028408&r1=1028407&r2=1028408&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_wc.h (original)
+++ subversion/trunk/subversion/include/svn_wc.h Thu Oct 28 18:18:13 2010
@@ -3796,9 +3796,11 @@ typedef void (*svn_wc_status_func_t)(voi
  * If @a cancel_func is non-NULL, call it with @a cancel_baton while walking
  * to determine if the client has cancelled the operation.
  *
- * If @a external_func is non-NULL, call it with @a external_baton if an
- * external definition is found while walking @a local_abspath.
- * ### call it with what other parameters?
+ * If @a external_func is non-NULL and an external definition is found
+ * while walking @a local_abspath, call @a external_func with @a
+ * external_baton, with the local abspath on which the definition was
+ * found, and with the current external definition provided as both
+ * the @a old_val and @a new_val parameters of the callback function.
  *
  * This function uses @a scratch_pool for temporary allocations.
  *