[Po4a-commits] "po4a/lib/Locale/Po4a Man.pm,1.108,1.109"

Nicolas FRANCOIS nekral-guest at alioth.debian.org
Sat Sep 3 16:42:06 UTC 2005


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

Modified Files:
	Man.pm 
Log Message:
The spaces between the macro and its argument were missing.


Index: Man.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Man.pm,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- Man.pm	2 Sep 2005 21:10:31 -0000	1.108
+++ Man.pm	3 Sep 2005 16:42:04 -0000	1.109
@@ -1507,11 +1507,11 @@
 	($l2,$ref2) = $self->shiftline();
 	chomp($l2);
     }
-    if ($l2 =~/^([.'][\t ]*([^\t ]*))(?:[\t ]+(.*)$|$)/) {
+    if ($l2 =~/^([.'][\t ]*([^\t ]*))(?:([\t ]+)(.*)$|$)/) {
         if ($inline{$2}) {
             my $tmp = "";
-            if (defined $3 and length $3) {
-                $tmp = $self->t($3, "wrap" => 0);
+            if (defined $4 and length $4) {
+                $tmp = $3.$self->t($4, "wrap" => 0);
             }
             $self->pushline($1.$tmp."\n");
         } else {




More information about the Po4a-commits mailing list