Return-Path: X-Original-To: apmail-apr-commits-archive@www.apache.org Delivered-To: apmail-apr-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 90539109E2 for ; Wed, 9 Oct 2013 21:29:51 +0000 (UTC) Received: (qmail 46027 invoked by uid 500); 9 Oct 2013 21:28:22 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 45930 invoked by uid 500); 9 Oct 2013 21:28:18 -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 45797 invoked by uid 99); 9 Oct 2013 21:28:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Oct 2013 21:28:12 +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; Wed, 09 Oct 2013 21:28:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3E0CE23888E4; Wed, 9 Oct 2013 21:27:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1530800 - /apr/apr/trunk/include/apr_escape.h Date: Wed, 09 Oct 2013 21:27:51 -0000 To: commits@apr.apache.org From: minfrin@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131009212751.3E0CE23888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: minfrin Date: Wed Oct 9 21:27:50 2013 New Revision: 1530800 URL: http://svn.apache.org/r1530800 Log: Remove reference to the escape character. Modified: apr/apr/trunk/include/apr_escape.h Modified: apr/apr/trunk/include/apr_escape.h URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_escape.h?rev=1530800&r1=1530799&r2=1530800&view=diff ============================================================================== --- apr/apr/trunk/include/apr_escape.h (original) +++ apr/apr/trunk/include/apr_escape.h Wed Oct 9 21:27:50 2013 @@ -297,9 +297,9 @@ APR_DECLARE(apr_status_t) apr_escape_ech /** * Escape control characters in a string, as performed by the shell's * 'echo' command, and return the results from a pool. Characters are - * replaced as follows: \a alert (bell), \b backspace, \e an escape - * character, \f form feed, \n new line, \r carriage return, \t - * horizontal tab, \v vertical tab, \\ backslash. + * replaced as follows: \a alert (bell), \b backspace, \f form feed, + * \n new line, \r carriage return, \t horizontal tab, \v vertical tab, + * \\ backslash. * * Any non ascii character will be encoded as '\xHH', where HH is the hex * code of the character.