summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2022-04-19 13:24:42 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2022-04-19 13:40:38 -0700
commit6106b56191a0ee3807d3d662f6f0b9ffb69f003e (patch)
tree01f1aafe9fc837598be497020405b46c129d77f4 /doc
parentdd614d6011f64e06852adc532e7357de59f4bac3 (diff)
downloadcoreutils-6106b56191a0ee3807d3d662f6f0b9ffb69f003e.tar.gz
doc: prefer ö to $'\u7530'
* doc/coreutils.texi (Character arrays): Avoid using shell notation like $'\u7530' since this isn’t in POSIX yet. Instead, use ö and Ł which should work in all texinfo output formats.
Diffstat (limited to 'doc')
-rw-r--r--doc/coreutils.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi
index e7b53af53..35fde5289 100644
--- a/doc/coreutils.texi
+++ b/doc/coreutils.texi
@@ -6972,10 +6972,10 @@ The interpretation of @var{string1} and @var{string2} depends on locale.
GNU @command{tr} fully supports only safe single-byte locales,
where each possible input byte represents a single character.
Unfortunately, this means GNU @command{tr} will not handle commands
-like @samp{tr $'\u7530' $'\u68EE'} the way you might expect,
+like @samp{tr @"o @L{}} the way you might expect,
since (assuming a UTF-8 encoding) this is equivalent to
-@samp{tr '\347\224\260' '\346\243\256'} and GNU @command{tr} will
-simply transliterate all @samp{\347} bytes to @samp{\346} bytes, etc.
+@samp{tr '\303\266' '\305\201'} and GNU @command{tr} will
+simply transliterate all @samp{\303} bytes to @samp{\305} bytes, etc.
POSIX does not clearly specify the behavior of @command{tr} in locales
where characters are represented by byte sequences instead of by
individual bytes, or where data might contain invalid bytes that are