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 2012/05/08 16:49:01 UTC

svn commit: r1335554 - /subversion/trunk/subversion/include/svn_ra.h

Author: cmpilato
Date: Tue May  8 14:49:00 2012
New Revision: 1335554

URL: http://svn.apache.org/viewvc?rev=1335554&view=rev
Log:
* subversion/include/svn_ra.h
  (svn_ra_get_wc_contents_func_t): Re-wrap long lines, and doc @since.

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

Modified: subversion/trunk/subversion/include/svn_ra.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_ra.h?rev=1335554&r1=1335553&r2=1335554&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_ra.h (original)
+++ subversion/trunk/subversion/include/svn_ra.h Tue May  8 14:49:00 2012
@@ -124,11 +124,14 @@ typedef svn_error_t *(*svn_ra_invalidate
  * cached pristine file contents whose SHA1 checksum is @a
  * sha1_checksum, if any.  @a *contents will be a read stream
  * containing those contents if they are found; NULL otherwise.
+ *
+ * @since New in 1.8.
  */
-typedef svn_error_t *(*svn_ra_get_wc_contents_func_t)(void *baton,
-                                                      svn_stream_t **contents,
-                                                      const svn_checksum_t *sha1_checksum,
-                                                      apr_pool_t *pool);
+typedef svn_error_t *
+(*svn_ra_get_wc_contents_func_t)(void *baton,
+                                 svn_stream_t **contents,
+                                 const svn_checksum_t *sha1_checksum,
+                                 apr_pool_t *pool);
 
 
 /** A function type for retrieving the youngest revision from a repos. */