diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-06 22:15:14 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-08-06 22:15:14 +0000 |
commit | 56ff73747e9362a483df0d73a430e0cb83ff0e6b (patch) | |
tree | 69aa87be58fa798dda335f85c41bc78f5dd2c33f /ext/Encode/Encode.pm | |
parent | a4474c9e1dfa634c058e348a6590af8b9ec4518e (diff) | |
download | perl-56ff73747e9362a483df0d73a430e0cb83ff0e6b.tar.gz |
Upgrade to Encode 2.11, plus a patch to PerlIO::encoding
by Dan Kogai to fix encoding(utf-8-strict) with partial
characters.
p4raw-id: //depot/perl@25271
Diffstat (limited to 'ext/Encode/Encode.pm')
-rw-r--r-- | ext/Encode/Encode.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Encode/Encode.pm b/ext/Encode/Encode.pm index 672ab4b566..9b45b7b120 100644 --- a/ext/Encode/Encode.pm +++ b/ext/Encode/Encode.pm @@ -1,9 +1,9 @@ # -# $Id: Encode.pm,v 2.10 2005/05/16 18:46:36 dankogai Exp dankogai $ +# $Id: Encode.pm,v 2.11 2005/08/05 10:58:25 dankogai Exp dankogai $ # package Encode; use strict; -our $VERSION = sprintf "%d.%02d", q$Revision: 2.10 $ =~ /(\d+)/g; +our $VERSION = sprintf "%d.%02d", q$Revision: 2.11 $ =~ /(\d+)/g; sub DEBUG () { 0 } use XSLoader (); XSLoader::load(__PACKAGE__, $VERSION); @@ -19,7 +19,7 @@ our @EXPORT = qw( ); our @FB_FLAGS = qw(DIE_ON_ERR WARN_ON_ERR RETURN_ON_ERR LEAVE_SRC - PERLQQ HTMLCREF XMLCREF); + PERLQQ HTMLCREF XMLCREF STOP_AT_PARTIAL); our @FB_CONSTS = qw(FB_DEFAULT FB_CROAK FB_QUIET FB_WARN FB_PERLQQ FB_HTMLCREF FB_XMLCREF); |