Skip to content

Commit

Permalink
VERSION 2.63
Browse files Browse the repository at this point in the history
  • Loading branch information
dankogai committed Oct 19, 2014
1 parent c2b2772 commit b4d116b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Revision history for Perl extension Encode.
#
# $Id: Changes,v 2.62 2014/05/31 12:12:39 dankogai Exp dankogai $
# $Id: Changes,v 2.63 2014/10/19 07:01:15 dankogai Exp $
#
$Revision: 2.62 $ $Date: 2014/05/31 12:12:39 $
$Revision: 2.63 $ $Date: 2014/10/19 07:01:15 $
! Encode.xs
Applied: RT #99264: call_pv() can reallocate the stack
https://rt.cpan.org/Ticket/Display.html?id=99264
Expand Down
4 changes: 2 additions & 2 deletions Encode.pm
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#
# $Id: Encode.pm,v 2.62 2014/05/31 12:12:39 dankogai Exp dankogai $
# $Id: Encode.pm,v 2.63 2014/10/19 07:02:18 dankogai Exp $
#
package Encode;
use strict;
use warnings;
our $VERSION = sprintf "%d.%02d", q$Revision: 2.62 $ =~ /(\d+)/g;
our $VERSION = sprintf "%d.%02d", q$Revision: 2.63 $ =~ /(\d+)/g;
use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG};
use XSLoader ();
XSLoader::load( __PACKAGE__, $VERSION );
Expand Down
2 changes: 1 addition & 1 deletion Encode.xs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
$Id: Encode.xs,v 2.29 2014/05/31 12:12:39 dankogai Exp dankogai $
$Id: Encode.xs,v 2.30 2014/10/19 07:01:15 dankogai Exp $
*/

#define PERL_NO_GET_CONTEXT
Expand Down
2 changes: 1 addition & 1 deletion bin/enc2xs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use warnings;
use Getopt::Std;
use Config;
my @orig_ARGV = @ARGV;
our $VERSION = do { my @r = (q$Revision: 2.13 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
our $VERSION = do { my @r = (q$Revision: 2.14 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };

# These may get re-ordered.
# RAW is a do_now as inserted by &enter
Expand Down

0 comments on commit b4d116b

Please sign in to comment.