summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Env.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Env.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Env.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/Env.pm b/Master/tlpkg/tlperl/lib/Env.pm
index bb1f0b381fd..6e6cd8b2305 100644
--- a/Master/tlpkg/tlperl/lib/Env.pm
+++ b/Master/tlpkg/tlperl/lib/Env.pm
@@ -1,6 +1,6 @@
package Env;
-our $VERSION = '1.03';
+our $VERSION = '1.04';
=head1 NAME
@@ -211,7 +211,7 @@ sub SPLICE {
my $length = shift;
my @temp = split($sep, $ENV{$$self});
if (wantarray) {
- my @result = splice @temp, $self, $offset, $length, @_;
+ my @result = splice @temp, $offset, $length, @_;
$ENV{$$self} = join($sep, @temp);
return @result;
} else {