[Po4a-devel][CVS] po4a/lib/Locale/Po4a Man.pm,1.12,1.13

Denis Barbier po4a-devel@lists.alioth.debian.org
Wed, 28 Apr 2004 22:01:15 +0000


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

Modified Files:
	Man.pm 
Log Message:
Fix syntax errors

Index: Man.pm
===================================================================
RCS file: /cvsroot/po4a/po4a/lib/Locale/Po4a/Man.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Man.pm	28 Apr 2004 21:39:36 -0000	1.12
+++ Man.pm	28 Apr 2004 22:01:13 -0000	1.13
@@ -638,7 +638,7 @@
 	    } else {
 		$self->pushline($line."\n");
 		die sprintf(gettext(
-		    "po4a::man: Unknown macro '%s'. Remove it from the document,\npo4a::man: or provide a patch to <po4a-devel@lists.alioth.debian.org>.\n"),$line);
+		    "po4a::man: Unknown macro '%s'. Remove it from the document,\npo4a::man: or provide a patch to <po4a-devel\@lists.alioth.debian.org>.\n"),$line);
 	    }
 
 	} elsif ($line =~ /^( +)([^.].*)/) {
@@ -878,7 +878,7 @@
 # .ie cond anything  If cond then anything else goto .el.
 # .if cond anything  If cond then anything; otherwise do nothing.
 $macro{'ie'}=$macro{'if'}=sub {
-    die sprintf(gettext("po4a::man: This page uses conditionals with '%s'. Since po4a is not a real\npo4a::man: groff parser, this is not supported.\n",$_[1]);
+    die sprintf(gettext("po4a::man: This page uses conditionals with '%s'. Since po4a is not a real\npo4a::man: groff parser, this is not supported.\n",$_[1]));
 };
 # .in  N    Change indent according to N (default scaling indicator m).
 $macro{'in'}=\&untranslated;