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 2014/06/23 12:40:27 UTC

svn commit: r1604735 - in /subversion/trunk/subversion/include: svn_fs.h svn_path.h svn_types.h

Author: julianfoad
Date: Mon Jun 23 10:40:27 2014
New Revision: 1604735

URL: http://svn.apache.org/r1604735
Log:
Fix up "@since" markers in doc strings.

* subversion/include/svn_fs.h
  (SVN_FS_TXN_CLIENT_DATE, svn_fs_lock_callback_t):
    Mark as new in 1.9.

* subversion/include/svn_path.h
  (svn_path_illegal_path_escape): Mark as new in 1.8, rather than 1.9, as
    it was first released in 1.8.0 (via r1482136).

* subversion/include/svn_types.h
  (svn_null_pointer_constant_stdarg_sentinel_t, SVN_VA_NULL):
    Mark as new in 1.9.

Modified:
    subversion/trunk/subversion/include/svn_fs.h
    subversion/trunk/subversion/include/svn_path.h
    subversion/trunk/subversion/include/svn_types.h

Modified: subversion/trunk/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_fs.h?rev=1604735&r1=1604734&r2=1604735&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_fs.h (original)
+++ subversion/trunk/subversion/include/svn_fs.h Mon Jun 23 10:40:27 2014
@@ -1003,6 +1003,8 @@ typedef struct svn_fs_txn_t svn_fs_txn_t
 /** Allow the client to specify the final svn:date of the revision by
  * setting or deleting the corresponding transaction property rather
  * than have it set automatically when the transaction is committed.
+ *
+ * @since New in 1.9.
  */
 #define SVN_FS_TXN_CLIENT_DATE                   0x00004
 
@@ -2561,6 +2563,8 @@ void svn_fs_lock_target_set_token(svn_fs
  *
  * If the callback returns an error no further callbacks will be made
  * and svn_fs_lock_many/svn_fs_unlock_many will return an error.
+ *
+ * @since New in 1.9.
  */
 typedef svn_error_t *(*svn_fs_lock_callback_t)(void *baton,
                                                const char *path,

Modified: subversion/trunk/subversion/include/svn_path.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_path.h?rev=1604735&r1=1604734&r2=1604735&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_path.h (original)
+++ subversion/trunk/subversion/include/svn_path.h Mon Jun 23 10:40:27 2014
@@ -722,7 +722,7 @@ svn_path_resolve_repos_relative_url(cons
  * characters have been escaped using the form "\NNN" (where NNN is the
  * octal representation of the byte's ordinal value).
  *
- * @since New in 1.9. */
+ * @since New in 1.8. */
 const char *
 svn_path_illegal_path_escape(const char *path, apr_pool_t *pool);
 

Modified: subversion/trunk/subversion/include/svn_types.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1604735&r1=1604734&r2=1604735&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_types.h (original)
+++ subversion/trunk/subversion/include/svn_types.h Mon Jun 23 10:40:27 2014
@@ -149,10 +149,16 @@ typedef int svn_boolean_t;
 
 
 
-/** Declaration of the null pointer constant type. */
+/** Declaration of the null pointer constant type.
+ *
+ * @since New in 1.9.
+ */
 struct svn_null_pointer_constant_stdarg_sentinel_t;
 
-/** Null pointer constant used as a sentinel in variable argument lists. */
+/** Null pointer constant used as a sentinel in variable argument lists.
+ *
+ * @since New in 1.9.
+ */
 #define SVN_VA_NULL ((struct svn_null_pointer_constant_stdarg_sentinel_t*)0)
 /* See? (char*)NULL -- They have the same length, but the cast looks ugly. */