summaryrefslogtreecommitdiff
path: root/include/apr_escape.h
diff options
context:
space:
mode:
authorGraham Leggett <minfrin@apache.org>2013-10-09 21:27:50 +0000
committerGraham Leggett <minfrin@apache.org>2013-10-09 21:27:50 +0000
commitc2549314a7ba47c7ec6d5676f4135cc339eebff8 (patch)
tree9fe22233815137d204ec199c4eb987978f2dd465 /include/apr_escape.h
parente34d98d796bd4a9e7026a9009667e16042703a86 (diff)
downloadapr-c2549314a7ba47c7ec6d5676f4135cc339eebff8.tar.gz
Remove reference to the escape character.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1530800 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_escape.h')
-rw-r--r--include/apr_escape.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_escape.h b/include/apr_escape.h
index 63dd27945..08de7dcf1 100644
--- a/include/apr_escape.h
+++ b/include/apr_escape.h
@@ -297,9 +297,9 @@ APR_DECLARE(apr_status_t) apr_escape_echo(char *escaped, const char *str,
/**
* 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.