Skip to content

Commit

Permalink
Make :via and :scalar use readdelim
Browse files Browse the repository at this point in the history
  • Loading branch information
Leont committed May 2, 2021
1 parent 3485f29 commit c6951c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/PerlIO-scalar/scalar.pm
@@ -1,5 +1,5 @@
package PerlIO::scalar;
our $VERSION = '0.31';
our $VERSION = '0.32';
require XSLoader;
XSLoader::load();
1;
Expand Down
1 change: 1 addition & 0 deletions ext/PerlIO-scalar/scalar.xs
Expand Up @@ -436,6 +436,7 @@ static PERLIO_FUNCS_DECL(PerlIO_scalar) = {
PerlIOScalar_get_ptr,
PerlIOScalar_get_cnt,
PerlIOScalar_set_ptrcnt,
PerlIOBuf_readdelim,
};


Expand Down
2 changes: 1 addition & 1 deletion ext/PerlIO-via/via.pm
@@ -1,5 +1,5 @@
package PerlIO::via;
our $VERSION = '0.18';
our $VERSION = '0.19';
require XSLoader;
XSLoader::load();
1;
Expand Down
1 change: 1 addition & 0 deletions ext/PerlIO-via/via.xs
Expand Up @@ -678,6 +678,7 @@ static PERLIO_FUNCS_DECL(PerlIO_object) = {
PerlIOVia_get_ptr,
PerlIOVia_get_cnt,
PerlIOVia_set_ptrcnt,
PerlIOBase_readdelim, // PerlIOVia_readdelim
};


Expand Down

0 comments on commit c6951c0

Please sign in to comment.