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 9C4E99057 for ; Tue, 24 Apr 2012 15:35:20 +0000 (UTC) Received: (qmail 15556 invoked by uid 500); 24 Apr 2012 15:35:20 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 15522 invoked by uid 500); 24 Apr 2012 15:35:20 -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 15515 invoked by uid 99); 24 Apr 2012 15:35:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Apr 2012 15:35:20 +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, 24 Apr 2012 15:35:19 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6680623888CD; Tue, 24 Apr 2012 15:34:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1329796 - /subversion/trunk/subversion/include/svn_error.h Date: Tue, 24 Apr 2012 15:34:59 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120424153459.6680623888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: danielsh Date: Tue Apr 24 15:34:58 2012 New Revision: 1329796 URL: http://svn.apache.org/viewvc?rev=1329796&view=rev Log: * subversion/include/svn_error.h (SVN_ERR_ASSERT2): Expand and correct docstring. Found by: julianf Modified: subversion/trunk/subversion/include/svn_error.h Modified: subversion/trunk/subversion/include/svn_error.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_error.h?rev=1329796&r1=1329795&r2=1329796&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_error.h (original) +++ subversion/trunk/subversion/include/svn_error.h Tue Apr 24 15:34:58 2012 @@ -462,8 +462,10 @@ svn_error_t *svn_error_purge_tracing(svn /** Like SVN_ERR_ASSERT(), but append ERR to the returned error chain. * - * If EXPR is true, return a malfunction error whose chain includes ERR. - * If EXPR is false, do nothing. (In particular, this does not clear ERR.) + * If EXPR is false, return a malfunction error whose chain includes ERR. + * If EXPR is true, do nothing. (In particular, this does not clear ERR.) + * + * Types: (svn_boolean_t expr, svn_error_t *err) * * @since New in 1.8. */