a change for asis was apparently lost from 1.3 to 1.4
Joseph Caretto <[email protected]>
| Newsgroups | gmane.comp.web.wget.patches |
|---|---|
| Message-ID | <[email protected]> |
Sirs --
A change added between 1.2 and 1.3 of wget/doc/texi2pod.pl.in to correct
for format tag "asis" appears to have been dropped between 1.3 and 1.4.
Man page output has "@asis" in text.
--- wget/doc/texi2pod.pl.in.orig Tue Sep 16 06:20:38 2003
+++ wget/doc/texi2pod.pl.in Mon Mar 21 17:33:39 2005
@@ -274,6 +274,7 @@
$ic =~ s/\@(?:code|kbd)/C/;
$ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
$ic =~ s/\@(?:file)/F/;
+ $ic =~ s/\@(?:asis)/S/; # punt
$_ = "\n=over 4\n";
};
regards,
Joe
[An Andrew ToolKit view (an animated drawing) was included here, but
could not be displayed.]
texi2pod-lostchange.patch
(text/plain, 303 B)
--- wget/doc/texi2pod.pl.in.orig Tue Sep 16 06:20:38 2003
+++ wget/doc/texi2pod.pl.in Mon Mar 21 17:33:39 2005
@@ -274,6 +274,7 @@
$ic =~ s/\@(?:code|kbd)/C/;
$ic =~ s/\@(?:dfn|var|emph|cite|i)/I/;
$ic =~ s/\@(?:file)/F/;
+ $ic =~ s/\@(?:asis)/S/; # punt
$_ = "\n=over 4\n";
};