aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-05 19:20:43 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-05 19:20:43 +0200
commited79a636238ec15c562862787dd71cd9de168b7d (patch)
treed8c34d73dc08a49677945de7c7f05b219317e1ca
parent92b8d9c9faf599cd323c04d4f6853f2de840279c (diff)
downloadbusybox-w32-ed79a636238ec15c562862787dd71cd9de168b7d.tar.gz
busybox-w32-ed79a636238ec15c562862787dd71cd9de168b7d.tar.bz2
busybox-w32-ed79a636238ec15c562862787dd71cd9de168b7d.zip
ash: tweak in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 5da23c34b..9b1f57949 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5931,7 +5931,7 @@ rmescapes(char *str, int flag)
5931 * superfluous escapes (\z where z has no 5931 * superfluous escapes (\z where z has no
5932 * special meaning anyway). But this causes 5932 * special meaning anyway). But this causes
5933 * bugs such as string of one greek letter rho 5933 * bugs such as string of one greek letter rho
5934 * (unicode-encoded as two bytes 'cf,81") 5934 * (unicode-encoded as two bytes "cf,81")
5935 * getting encoded as "cf,CTLESC,81" 5935 * getting encoded as "cf,CTLESC,81"
5936 * and here, converted to "cf,\,81" - 5936 * and here, converted to "cf,\,81" -
5937 * which does not go well with some flavors 5937 * which does not go well with some flavors