From 57c56abc9e17d98a745019f00e057204dad8ead6 Mon Sep 17 00:00:00 2001 From: hniksic Date: Tue, 22 Mar 2005 05:27:49 -0800 Subject: [PATCH] [svn] Restore correct handling of asis. --- doc/ChangeLog | 6 ++++++ doc/texi2pod.pl.in | 1 + 2 files changed, 7 insertions(+) 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"; };