[Po4a-commits] po4a/lib/Locale/Po4a Man.pm,1.46,1.47

Nicolas FRAN??OIS po4a-devel@lists.alioth.debian.org
Sat, 02 Oct 2004 12:27:46 +0000


Update of /cvsroot/po4a/po4a/lib/Locale/Po4a
In directory haydn:/tmp/cvs-serv27938/lib/Locale/Po4a

Modified Files:
	Man.pm 
Log Message:
The firsts spaces after a macro need to be removed before the splitargs loop.


Index: Man.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Man.pm,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- Man.pm	27 Sep 2004 09:00:49 -0000	1.46
+++ Man.pm	2 Oct 2004 12:27:44 -0000	1.47
@@ -524,7 +524,7 @@
 	    # the ones which won't get translated are not changed anymore. Let's play safe.
 	    $line =~ s/\\ /\xA0/g;
 	    $arguments =~ s/\\ /\xA0/g;
-#	    $arguments =~ s/^ +//;
+	    $arguments =~ s/^ +//;
 	    push @args,$arg1;
 	    
 	    foreach my $elem (split (/ +/,$arguments)) {