diff options
author | Karl Williamson <khw@cpan.org> | 2019-02-04 22:13:16 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-02-05 09:31:45 -0700 |
commit | d595c8d9abca40e7e0a93458eec0667660fb79f3 (patch) | |
tree | 3f13d4b43274e0a40c2294b0a41ec38fa71accf1 /pp.c | |
parent | 9730c47616258ce7e7ec58cb5e16a1800bb5099b (diff) | |
download | perl-d595c8d9abca40e7e0a93458eec0667660fb79f3.tar.gz |
pp.c: Clarify comment
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4321,7 +4321,7 @@ PP(pp_lc) SvUTF8_on(dest); *d = '\0'; SvCUR_set(dest, d - (U8*)SvPVX_const(dest)); - } else { /* Not utf8 */ + } else { /* 'source' not utf8 */ if (len) { const U8 *const send = s + len; |