summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-02-04 22:13:16 -0700
committerKarl Williamson <khw@cpan.org>2019-02-05 09:31:45 -0700
commitd595c8d9abca40e7e0a93458eec0667660fb79f3 (patch)
tree3f13d4b43274e0a40c2294b0a41ec38fa71accf1
parent9730c47616258ce7e7ec58cb5e16a1800bb5099b (diff)
downloadperl-d595c8d9abca40e7e0a93458eec0667660fb79f3.tar.gz
pp.c: Clarify comment
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index bf93ce76cd..b933fe75fa 100644
--- a/pp.c
+++ b/pp.c
@@ -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;