[Po4a-commits] po4a/lib/Locale/Po4a Man.pm,1.36,1.37
Martin Quinson
po4a-devel@lists.alioth.debian.org
Wed, 18 Aug 2004 00:17:57 +0000
Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv28301
Modified Files:
Man.pm
Log Message:
Do not eat \ at end of line if it's not a macro definition
Index: Man.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Man.pm,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- Man.pm 18 Aug 2004 00:11:22 -0000 1.36
+++ Man.pm 18 Aug 2004 00:17:55 -0000 1.37
@@ -468,7 +468,7 @@
while (defined($line)) {
# print STDERR "line=$line;ref=$ref";
chomp($line);
- while ($line =~ /\\$/) {
+ while ($line =~ /^\..*\\$/) {
my ($l2,$r2)=$self->shiftline();
chomp($l2);
$line =~ s/\\$//;