summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm
diff options
context:
space:
mode:
Diffstat (limited to 'systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm')
-rw-r--r--systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm b/systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm
index daf4457188..bd5553ffe6 100644
--- a/systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm
+++ b/systems/texlive/tlnet/tlpkg/tlperl/lib/PerlIO/encoding.pm
@@ -1,7 +1,7 @@
package PerlIO::encoding;
use strict;
-our $VERSION = '0.28';
+our $VERSION = '0.30';
our $DEBUG = 0;
$DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n";
@@ -13,8 +13,7 @@ $DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n";
require XSLoader;
XSLoader::load();
-our $fallback =
- Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::ONLY_PRAGMA_WARNINGS()|Encode::STOP_AT_PARTIAL();
+our $fallback = Encode::PERLQQ()|Encode::WARN_ON_ERR()|Encode::ONLY_PRAGMA_WARNINGS();
1;
__END__