diff --git a/doc/ChangeLog b/doc/ChangeLog index 2a854d0d..561d6615 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2005-03-22 Joseph Caretto + + * texi2pod.pl.in: Handle asis again. It used to work (see the + 2001-12-11 entry), but the local change was lost in the upgrade + to 1.4. + 2005-02-11 Mauro Tortonesi * wget.texi: Added Simone Piunno as new contributor. diff --git a/doc/texi2pod.pl.in b/doc/texi2pod.pl.in index 9d4bb541..dc81e747 100644 --- a/doc/texi2pod.pl.in +++ b/doc/texi2pod.pl.in @@ -274,6 +274,7 @@ while(<$inf>) { $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"; };