This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
rmv redundant PerlIO_find_layer from PerlIO_default_layers
authorDaniel Dragan <bulk88@hotmail.com>
Fri, 12 Sep 2014 17:49:45 +0000 (13:49 -0400)
committerFather Chrysostomos <sprout@cpan.org>
Sat, 25 Oct 2014 03:36:34 +0000 (20:36 -0700)
commitf814d560e84fb1708a02c0e9482182b47ea6e560
tree744f73cc972391839dc61214562f4b4d5aa5eadf
parent4e0ef34209f54db7b7567b4768de7318aaf800cd
rmv redundant PerlIO_find_layer from PerlIO_default_layers

Obsolete as of commit fcf2db383b , prior to that commit, PerlIO_find_layer
was needed to convert a PerlIO_funcs * (var osLayer) to a SV * since
PL_def_layerlist wasn't a PerlIO_list_t * but a AV *. After that commit
PerlIO_find_layer returns a PerlIO_funcs *, and we start with a
PerlIO_funcs * (var osLayer), so PerlIO_find_layer is redundant.

Also _NN a stack arg for smaller code.
perlio.c