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 2011/01/27 14:08:19 UTC

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

Author: julianfoad
Date: Thu Jan 27 13:08:18 2011
New Revision: 1064117

URL: http://svn.apache.org/viewvc?rev=1064117&view=rev
Log:
* subversion/include/svn_wc.h
  (SVN_WC_ADM_DIR_NAME): Move this constant to earlier in the file, to be
    with the functions related to it.

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=1064117&r1=1064116&r2=1064117&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_wc.h (original)
+++ subversion/trunk/subversion/include/svn_wc.h Thu Jan 27 13:08:18 2011
@@ -581,6 +581,20 @@ svn_wc_locked(svn_boolean_t *locked,
               apr_pool_t *pool);
 
 
+
+/** Administrative subdir.
+ *
+ * Ideally, this would be completely private to wc internals (in fact,
+ * it used to be that adm_subdir() in adm_files.c was the only function
+ * who knew the adm subdir's name).  However, import wants to protect
+ * against importing administrative subdirs, so now the name is a
+ * matter of public record.
+ *
+ * @deprecated Provided for backward compatibility with the 1.2 API.
+ */
+#define SVN_WC_ADM_DIR_NAME   ".svn"
+
+
 /**
  * Return @c TRUE if @a name is the name of the WC administrative
  * directory.  Use @a pool for any temporary allocations.  Only works
@@ -2553,20 +2567,6 @@ svn_wc_props_modified_p(svn_boolean_t *m
 
 
 
-/** Administrative subdir.
- *
- * Ideally, this would be completely private to wc internals (in fact,
- * it used to be that adm_subdir() in adm_files.c was the only function
- * who knew the adm subdir's name).  However, import wants to protect
- * against importing administrative subdirs, so now the name is a
- * matter of public record.
- *
- * @deprecated Provided for backward compatibility with the 1.2 API.
- */
-#define SVN_WC_ADM_DIR_NAME   ".svn"
-
-
-
 /* Entries and status. */
 
 /** The schedule states an entry can be in. */