Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8599DD044 for ; Tue, 18 Sep 2012 14:58:37 +0000 (UTC) Received: (qmail 10423 invoked by uid 500); 18 Sep 2012 14:58:36 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 10397 invoked by uid 500); 18 Sep 2012 14:58:36 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 10389 invoked by uid 99); 18 Sep 2012 14:58:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Sep 2012 14:58:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Sep 2012 14:58:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5371C23888FE; Tue, 18 Sep 2012 14:57:49 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1387206 - in /subversion/trunk/subversion/include: svn_client.h svn_diff.h svn_io.h svn_types.h svn_wc.h svn_xml.h Date: Tue, 18 Sep 2012 14:57:48 -0000 To: commits@subversion.apache.org From: julianfoad@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120918145749.5371C23888FE@eris.apache.org> Author: julianfoad Date: Tue Sep 18 14:57:48 2012 New Revision: 1387206 URL: http://svn.apache.org/viewvc?rev=1387206&view=rev Log: Fix Doxygen mark-up in public header files, where a plain comment was used instead of the special Doxygen comment marker. * subversion/include/svn_client.h (svn_client_args_to_target_array): Use Doxygen-style comment. * subversion/include/svn_diff.h (svn_patch_file_t, svn_diff_open_patch_file): Same. * subversion/include/svn_io.h (svn_io_file_readline): Same. * subversion/include/svn_types.h (SVN_DEPTH_INFINITY_OR_FILES, SVN_DEPTH_INFINITY_OR_IMMEDIATES, SVN_DEPTH_INFINITY_OR_EMPTY, SVN_DEPTH_IS_RECURSIVE, SVN_LINENUM_MAX_VALUE): Same. * subversion/include/svn_wc.h (svn_wc_external_item_create, svn_wc_status3_t, svn_wc_get_changelists): Same. * subversion/include/svn_xml.h (svn_xml_make_header): Same. Modified: subversion/trunk/subversion/include/svn_client.h subversion/trunk/subversion/include/svn_diff.h subversion/trunk/subversion/include/svn_io.h subversion/trunk/subversion/include/svn_types.h subversion/trunk/subversion/include/svn_wc.h subversion/trunk/subversion/include/svn_xml.h Modified: subversion/trunk/subversion/include/svn_client.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_client.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_client.h (original) +++ subversion/trunk/subversion/include/svn_client.h Tue Sep 18 14:57:48 2012 @@ -1046,7 +1046,7 @@ svn_client_args_to_target_array2(apr_arr svn_boolean_t keep_last_origpath_on_truepath_collision, apr_pool_t *pool); -/* +/** * Similar to svn_client_args_to_target_array2() but with * @a keep_last_origpath_on_truepath_collision always set to FALSE. * Modified: subversion/trunk/subversion/include/svn_diff.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_diff.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_diff.h (original) +++ subversion/trunk/subversion/include/svn_diff.h Tue Sep 18 14:57:48 2012 @@ -1063,12 +1063,12 @@ typedef struct svn_patch_t { svn_boolean_t reverse; } svn_patch_t; -/* An opaque type representing an open patch file. +/** An opaque type representing an open patch file. * * @since New in 1.7. */ typedef struct svn_patch_file_t svn_patch_file_t; -/* Open @a patch_file at @a local_abspath. +/** Open @a patch_file at @a local_abspath. * Allocate @a patch_file in @a result_pool. * * @since New in 1.7. */ Modified: subversion/trunk/subversion/include/svn_io.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_io.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_io.h (original) +++ subversion/trunk/subversion/include/svn_io.h Tue Sep 18 14:57:48 2012 @@ -2200,9 +2200,9 @@ svn_io_write_version_file(const char *pa int version, apr_pool_t *pool); -/* Read a line of text from a file, up to a specified length. +/** Read a line of text from a file, up to a specified length. * - * Allocate @a *stringbuf in @a result_pool, and read into it one line + * Allocate @a *stringbuf in @a result_pool, and read into it one line * from @a file. Reading stops either after a line-terminator was found * or after @a max_len bytes have been read. * Modified: subversion/trunk/subversion/include/svn_types.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_types.h (original) +++ subversion/trunk/subversion/include/svn_types.h Tue Sep 18 14:57:48 2012 @@ -509,7 +509,7 @@ svn_depth_to_word(svn_depth_t depth); svn_depth_t svn_depth_from_word(const char *word); -/* Return #svn_depth_infinity if boolean @a recurse is TRUE, else +/** Return #svn_depth_infinity if boolean @a recurse is TRUE, else * return #svn_depth_files. * * @note New code should never need to use this, it is called only @@ -520,7 +520,7 @@ svn_depth_from_word(const char *word); #define SVN_DEPTH_INFINITY_OR_FILES(recurse) \ ((recurse) ? svn_depth_infinity : svn_depth_files) -/* Return #svn_depth_infinity if boolean @a recurse is TRUE, else +/** Return #svn_depth_infinity if boolean @a recurse is TRUE, else * return #svn_depth_immediates. * * @note New code should never need to use this, it is called only @@ -531,7 +531,7 @@ svn_depth_from_word(const char *word); #define SVN_DEPTH_INFINITY_OR_IMMEDIATES(recurse) \ ((recurse) ? svn_depth_infinity : svn_depth_immediates) -/* Return #svn_depth_infinity if boolean @a recurse is TRUE, else +/** Return #svn_depth_infinity if boolean @a recurse is TRUE, else * return #svn_depth_empty. * * @note New code should never need to use this, it is called only @@ -542,7 +542,7 @@ svn_depth_from_word(const char *word); #define SVN_DEPTH_INFINITY_OR_EMPTY(recurse) \ ((recurse) ? svn_depth_infinity : svn_depth_empty) -/* Return a recursion boolean based on @a depth. +/** Return a recursion boolean based on @a depth. * * Although much code has been converted to use depth, some code still * takes a recurse boolean. In most cases, it makes sense to treat @@ -1261,7 +1261,7 @@ svn_location_segment_dup(const svn_locat */ typedef unsigned long svn_linenum_t; -/* The maximum value of an svn_linenum_t. +/** The maximum value of an svn_linenum_t. * * @since New in 1.7. */ Modified: subversion/trunk/subversion/include/svn_wc.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_wc.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_wc.h (original) +++ subversion/trunk/subversion/include/svn_wc.h Tue Sep 18 14:57:48 2012 @@ -828,7 +828,7 @@ svn_error_t * svn_wc_external_item2_create(svn_wc_external_item2_t **item, apr_pool_t *pool); -/* Same as svn_wc_external_item2_create() except the pointer to the new +/** Same as svn_wc_external_item2_create() except the pointer to the new * empty item is 'const' which is stupid since the next thing you need to do * is fill in its fields. * @@ -3725,7 +3725,7 @@ typedef struct svn_wc_status3_t * @since New in 1.8. */ const char *moved_to_abspath; - /* TRUE iff the item is a file brought in by an svn:externals definition. + /** TRUE iff the item is a file brought in by an svn:externals definition. * @since New in 1.8. */ svn_boolean_t file_external; @@ -7857,7 +7857,9 @@ typedef svn_error_t *(*svn_changelist_re apr_pool_t *pool); -/* @since New in 1.7. +/** + * + * @since New in 1.7. */ svn_error_t * svn_wc_get_changelists(svn_wc_context_t *wc_ctx, Modified: subversion/trunk/subversion/include/svn_xml.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_xml.h?rev=1387206&r1=1387205&r2=1387206&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_xml.h (original) +++ subversion/trunk/subversion/include/svn_xml.h Tue Sep 18 14:57:48 2012 @@ -297,7 +297,8 @@ svn_xml_make_header2(svn_stringbuf_t **s const char *encoding, apr_pool_t *pool); -/* Like svn_xml_make_header2, but does not emit encoding information. */ +/** Like svn_xml_make_header2(), but does not emit encoding information. + */ SVN_DEPRECATED void svn_xml_make_header(svn_stringbuf_t **str,