Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 96133 invoked from network); 19 Apr 2006 23:51:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Apr 2006 23:51:43 -0000 Received: (qmail 12538 invoked by uid 500); 19 Apr 2006 23:51:42 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 12495 invoked by uid 500); 19 Apr 2006 23:51:42 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 12483 invoked by uid 99); 19 Apr 2006 23:51:42 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Apr 2006 16:51:42 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 19 Apr 2006 16:51:41 -0700 Received: (qmail 96039 invoked by uid 65534); 19 Apr 2006 23:51:20 -0000 Message-ID: <20060419235120.96038.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r395443 - in /apr/apr/trunk/include: apr.h.in apr_tables.h Date: Wed, 19 Apr 2006 23:51:20 -0000 To: commits@apr.apache.org From: ianh@apache.org X-Mailer: svnmailer-1.0.8 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ianh Date: Wed Apr 19 16:51:17 2006 New Revision: 395443 URL: http://svn.apache.org/viewcvs?rev=395443&view=rev Log: doxygen fixes Modified: apr/apr/trunk/include/apr.h.in apr/apr/trunk/include/apr_tables.h Modified: apr/apr/trunk/include/apr.h.in URL: http://svn.apache.org/viewcvs/apr/apr/trunk/include/apr.h.in?rev=395443&r1=395442&r2=395443&view=diff ============================================================================== --- apr/apr/trunk/include/apr.h.in (original) +++ apr/apr/trunk/include/apr.h.in Wed Apr 19 16:51:17 2006 @@ -390,6 +390,7 @@ #endif /** @} */ +/** @} */ #ifdef __cplusplus } Modified: apr/apr/trunk/include/apr_tables.h URL: http://svn.apache.org/viewcvs/apr/apr/trunk/include/apr_tables.h?rev=395443&r1=395442&r2=395443&view=diff ============================================================================== --- apr/apr/trunk/include/apr_tables.h (original) +++ apr/apr/trunk/include/apr_tables.h Wed Apr 19 16:51:17 2006 @@ -394,9 +394,9 @@ * than a function that just loops through table b calling other functions. */ /** - *
  * Conceptually, apr_table_overlap does this:
  *
+ * 
  *  apr_array_header_t *barr = apr_table_elts(b);
  *  apr_table_entry_t *belt = (apr_table_entry_t *)barr->elts;
  *  int i;
@@ -409,6 +409,7 @@
  *          apr_table_setn(a, belt[i].key, belt[i].val);
  *      }
  *  }
+ * 
* * Except that it is more efficient (less space and cpu-time) especially * when b has many elements. @@ -416,7 +417,6 @@ * Notice the assumptions on the keys and values in b -- they must be * in an ancestor of a's pool. In practice b and a are usually from * the same pool. - *
*/ APR_DECLARE(void) apr_table_overlap(apr_table_t *a, const apr_table_t *b,