diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-07-09 21:31:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-07-09 21:31:44 +0000 |
commit | e934609f7db1163b003ba7314f8d52ebfc1e2f12 (patch) | |
tree | 74e172d331579be10555103b1caf5cdfd80b687d /perlio.c | |
parent | caf25f3be4a66b8fbb51db2cfdfa658f6b9704e7 (diff) | |
download | perl-e934609f7db1163b003ba7314f8d52ebfc1e2f12.tar.gz |
Change PerlIO::Scalar and Via to scalar and via.
p4raw-id: //depot/perl@17454
Diffstat (limited to 'perlio.c')
-rw-r--r-- | perlio.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1255,7 +1255,7 @@ PerlIO_layer_from_ref(pTHX_ SV *sv) * For any scalar type load the handler which is bundled with perl */ if (SvTYPE(sv) < SVt_PVAV) - return PerlIO_find_layer(aTHX_ "Scalar", 6, 1); + return PerlIO_find_layer(aTHX_ "scalar", 6, 1); /* * For other types allow if layer is known but don't try and load it @@ -1295,7 +1295,7 @@ PerlIO_resolve_layers(pTHX_ const char *layers, incdef = 0; } /* - * Don't fail if handler cannot be found :Via(...) etc. may do + * Don't fail if handler cannot be found :via(...) etc. may do * something sensible else we will just stringfy and open * resulting string. */ |