summaryrefslogtreecommitdiff
path: root/doop.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-09-12 17:59:25 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-09-12 17:59:25 +0000
commit1e54db1a8aea187ba2e790aca2ab81fab24ff92d (patch)
tree612c4d590d91d3b2799cf3efb3af0b7d460a3a52 /doop.c
parent1db354ff70705eb3822ae7ef1851e7d133e23f00 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doop.c b/doop.c
index 89fe4614cc..5a41f6ac42 100644
--- a/doop.c
+++ b/doop.c
@@ -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) {