You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2013/10/09 23:27:51 UTC

svn commit: r1530800 - /apr/apr/trunk/include/apr_escape.h

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.