diff options
author | Christian Hansen <chansen@cpan.org> | 2013-02-17 14:50:30 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-02-18 21:32:41 -0700 |
commit | 10e621bc35cb48b15b69b5a57242ff004f7455dc (patch) | |
tree | 228ad6b0c4f1f624c787ae8f2f1836119be447a8 /dist/IO/IO.pm | |
parent | f10c05c1d5f850f4bfb45f5d10409f4b2f3cfb2f (diff) | |
download | perl-10e621bc35cb48b15b69b5a57242ff004f7455dc.tar.gz |
PATCH: [perl #116322]: getc() and ungetc() with unicode failure
ungetc() had no knowledge of UTF-8. This patch adds it.
The committer fleshed out the author's code to make a patch, making
a few small changes.
Diffstat (limited to 'dist/IO/IO.pm')
-rw-r--r-- | dist/IO/IO.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/IO/IO.pm b/dist/IO/IO.pm index 522aaabc62..2e021c4c8a 100644 --- a/dist/IO/IO.pm +++ b/dist/IO/IO.pm @@ -7,7 +7,7 @@ use Carp; use strict; use warnings; -our $VERSION = "1.26"; +our $VERSION = "1.27"; XSLoader::load 'IO', $VERSION; sub import { |