summaryrefslogtreecommitdiff
path: root/doop.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-08 22:19:05 -0600
committerKarl Williamson <khw@cpan.org>2020-08-08 22:21:50 -0600
commitd3597f897e4510946c5efe2a8109038b12cbf55d (patch)
treeb86c42d0f5c940ddb58812627a4e90512683c0f4 /doop.c
parent81a1c984197a02944bd21833081dd37346817bdf (diff)
downloadperl-d3597f897e4510946c5efe2a8109038b12cbf55d.tar.gz
doop.c: Comment, white-space only
This removes an obsolete comment
Diffstat (limited to 'doop.c')
-rw-r--r--doop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/doop.c b/doop.c
index c9c953212e..822ad3c2aa 100644
--- a/doop.c
+++ b/doop.c
@@ -728,7 +728,6 @@ Perl_do_sprintf(pTHX_ SV *sv, SSize_t len, SV **sarg)
SvTAINTED_on(sv);
}
-/* currently converts input to bytes if possible, but doesn't sweat failure */
UV
Perl_do_vecget(pTHX_ SV *sv, STRLEN offset, int size)
{
@@ -754,7 +753,8 @@ Perl_do_vecget(pTHX_ SV *sv, STRLEN offset, int size)
s = (unsigned char *) SvPV_flags(sv, srclen, svpv_flags);
}
else {
- Perl_croak(aTHX_ "Use of strings with code points over 0xFF as arguments to vec is forbidden");
+ Perl_croak(aTHX_ "Use of strings with code points over 0xFF"
+ " as arguments to vec is forbidden");
}
}