summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-07-11 20:48:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-07-11 20:48:50 +0000
commit1fafa243e0e99b59995e42a09247678007f02409 (patch)
tree02bdee9b7f0d5d6528c29399227634ad5b31846b /toke.c
parentc2e66d9e68806a7000ee1a4760c35703a0e0ae89 (diff)
downloadperl-1fafa243e0e99b59995e42a09247678007f02409.tar.gz
tweak for build failure under multiplicity
p4raw-id: //depot/perl@6374
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 8f42dcfb5e..f39b3bdc0e 100644
--- a/toke.c
+++ b/toke.c
@@ -1276,7 +1276,7 @@ S_scan_const(pTHX_ char *start)
/* range begins (ignore - as first or last char) */
else if (*s == '-' && s+1 < send && s != start) {
if (didrange) {
- croak("Ambiguous range in transliteration operator");
+ Perl_croak(aTHX_ "Ambiguous range in transliteration operator");
}
if (utf) {
*d++ = (char)0xff; /* use illegal utf8 byte--see pmtrans */