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 6AF0970DE for ; Thu, 22 Sep 2011 06:49:45 +0000 (UTC) Received: (qmail 61470 invoked by uid 500); 22 Sep 2011 06:49:45 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 61352 invoked by uid 500); 22 Sep 2011 06:49:44 -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 61329 invoked by uid 99); 22 Sep 2011 06:49:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Sep 2011 06:49:44 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [74.125.82.47] (HELO mail-ww0-f47.google.com) (74.125.82.47) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Sep 2011 06:49:39 +0000 Received: by wwe5 with SMTP id 5so1251224wwe.16 for ; Wed, 21 Sep 2011 23:49:17 -0700 (PDT) MIME-Version: 1.0 Received: by 10.227.55.20 with SMTP id s20mr174174wbg.15.1316674157300; Wed, 21 Sep 2011 23:49:17 -0700 (PDT) Received: by 10.227.59.206 with HTTP; Wed, 21 Sep 2011 23:49:17 -0700 (PDT) In-Reply-To: <20110922023106.B72B0238897D@eris.apache.org> References: <20110922023106.B72B0238897D@eris.apache.org> Date: Thu, 22 Sep 2011 07:49:17 +0100 Message-ID: Subject: Re: svn commit: r1173935 - /subversion/trunk/subversion/include/private/svn_subr_private.h From: Hyrum K Wright To: dev@subversion.apache.org Cc: commits@subversion.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Thu, Sep 22, 2011 at 3:31 AM, wrote: > Author: danielsh > Date: Thu Sep 22 02:31:06 2011 > New Revision: 1173935 > > URL: http://svn.apache.org/viewvc?rev=3D1173935&view=3Drev > Log: > * subversion/include/private/svn_subr_private.h: Doxygen markup fixes. You probably already know this, but stuff in include/private doesn't get processed by doxygen (and this comment wouldn't anyway, since it doesn't lead with a '/**' ). -Hyrum > > Modified: > =C2=A0 =C2=A0subversion/trunk/subversion/include/private/svn_subr_private= .h > > Modified: subversion/trunk/subversion/include/private/svn_subr_private.h > URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/pri= vate/svn_subr_private.h?rev=3D1173935&r1=3D1173934&r2=3D1173935&view=3Ddiff > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- subversion/trunk/subversion/include/private/svn_subr_private.h (origi= nal) > +++ subversion/trunk/subversion/include/private/svn_subr_private.h Thu Se= p 22 02:31:06 2011 > @@ -113,8 +113,8 @@ svn_spillbuf__write(svn_spillbuf_t *buf, > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 apr= _pool_t *scratch_pool); > > > -/* Read a block of memory from the spill buffer. @a data will be set to > - =C2=A0 NULL if no content remains. Otherwise, @data and @len will point= to > +/* Read a block of memory from the spill buffer. @a *data will be set to > + =C2=A0 NULL if no content remains. Otherwise, @a data and @a len will p= oint to > =C2=A0 =C2=A0data that must be fully-consumed by the caller. This data wi= ll remain > =C2=A0 =C2=A0valid until another call to svn_spillbuf_write(), svn_spillb= uf_read(), > =C2=A0 =C2=A0or svn_spillbuf_process(), or if the spill buffer's pool is = cleared. =C2=A0*/ > @@ -187,7 +187,7 @@ svn_spillbuf__reader_getc(char *c, > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 apr_pool_t *scratch_pool); > > > -/* Write @a len bytes from @a data into the spill-buffer in @reader. =C2= =A0*/ > +/* Write @a len bytes from @a data into the spill-buffer in @a reader. = =C2=A0*/ > =C2=A0svn_error_t * > =C2=A0svn_spillbuf__reader_write(svn_spillbuf_reader_t *reader, > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0const char *data, > > > --=20 uberSVN: Apache Subversion Made Easy http://www.uberSVN.com/