diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-12 17:59:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-12 17:59:25 +0000 |
commit | 1e54db1a8aea187ba2e790aca2ab81fab24ff92d (patch) | |
tree | 612c4d590d91d3b2799cf3efb3af0b7d460a3a52 /doop.c | |
parent | 1db354ff70705eb3822ae7ef1851e7d133e23f00 (diff) | |
download | perl-1e54db1a8aea187ba2e790aca2ab81fab24ff92d.tar.gz |
It's UTF-8, not UTF8. (Note: not s/UTF-8/UTF8/,
since that would break a lot of code.) Also few
stray UTF16s, UTF32s, and "encoded in Unicode".
p4raw-id: //depot/perl@21198
Diffstat (limited to 'doop.c')
-rw-r--r-- | doop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ S_do_trans_simple(pTHX_ SV *sv) s = (U8*)SvPV(sv, len); send = s + len; - /* First, take care of non-UTF8 input strings, because they're easy */ + /* First, take care of non-UTF-8 input strings, because they're easy */ if (!SvUTF8(sv)) { while (s < send) { if ((ch = tbl[*s]) >= 0) { |