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 2010/03/25 17:59:46 UTC

svn commit: r927496 - in /subversion/trunk/subversion: include/svn_wc.h libsvn_client/client.h

Author: julianfoad
Date: Thu Mar 25 16:59:46 2010
New Revision: 927496

URL: http://svn.apache.org/viewvc?rev=927496&view=rev
Log:
Doc fixes.

* subversion/include/svn_wc.h
  (svn_wc_queue_committed3): Note a documentation error.
  (svn_wc_queue_committed2): Tweak for clarity.

* subversion/libsvn_client/client.h
  (svn_client__harvest_committables): Update to reflect the correct data type.

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

Modified: subversion/trunk/subversion/include/svn_wc.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_wc.h?rev=927496&r1=927495&r2=927496&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_wc.h (original)
+++ subversion/trunk/subversion/include/svn_wc.h Thu Mar 25 16:59:46 2010
@@ -4755,6 +4755,8 @@ svn_wc_committed_queue_create(apr_pool_t
  * If non-NULL, @a wcprop_changes is an array of <tt>svn_prop_t *</tt>
  * changes to wc properties; if an #svn_prop_t->value is NULL, then
  * that property is deleted.
+ *   ### A prop whose value is NULL is ignored, not deleted.  (Maybe this
+ *   ### isn't a set of changes but rather the new complete set of props?)
  *
  * If @a remove_lock is @c TRUE, any entryprops related to a repository
  * lock will be removed.
@@ -4789,9 +4791,8 @@ svn_wc_queue_committed3(svn_wc_committed
                         const svn_checksum_t *checksum,
                         apr_pool_t *scratch_pool);
 
-/** @see svn_wc_queue_committed3()
- *
- * @a adm_access is unused.
+/** Same as svn_wc_queue_committed3() except @a path doesn't have to be an
+ * abspath and @a adm_access is unused.
  *
  * @since New in 1.6.
  *

Modified: subversion/trunk/subversion/libsvn_client/client.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/client.h?rev=927496&r1=927495&r2=927496&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/client.h (original)
+++ subversion/trunk/subversion/libsvn_client/client.h Thu Mar 25 16:59:46 2010
@@ -824,7 +824,7 @@ typedef struct
    working copy directories as the crawl progresses.  For each
    candidate found:
 
-     - create svn_client_commit_item_t for the candidate.
+     - create svn_client_commit_item3_t for the candidate.
 
      - add the structure to an apr_array_header_t array of commit
        items that are in the same repository, creating a new array if
@@ -843,7 +843,7 @@ typedef struct
 
    At the successful return of this function, COMMITTABLES will be an
    apr_hash_t * hash of apr_array_header_t * arrays (of
-   svn_client_commit_item_t * structures), keyed on const char *
+   svn_client_commit_item3_t * structures), keyed on const char *
    canonical repository URLs.  LOCK_TOKENS will point to a hash table
    with const char * lock tokens, keyed on const char * URLs.