[Po4a-commits] po4a/lib/Locale/Po4a TransTractor.pm,1.60,1.61
Jordi Vilalta
po4a-devel@lists.alioth.debian.org
Sat, 05 Mar 2005 18:12:39 +0000
Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv12454
Modified Files:
TransTractor.pm
Log Message:
Don't declare $line and $lref twice in the code example
Index: TransTractor.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/TransTractor.pm,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- TransTractor.pm 27 Feb 2005 22:53:53 -0000 1.60
+++ TransTractor.pm 5 Mar 2005 18:12:35 -0000 1.61
@@ -122,7 +122,7 @@
my $self = shift;
PARAGRAPH: while (1) {
- my ($paragraph,$pararef,$line,$lref)=("","","","");
+ my ($paragraph,$pararef)=("","");
my $first=1;
my ($line,$lref)=$self->shiftline();
while (defined($line)) {