From cd04dcfa2a0161ebbcbac1db30f22b00bfd17009 Mon Sep 17 00:00:00 2001 From: Micah Cowan Date: Thu, 27 Sep 2007 19:03:05 -0700 Subject: [PATCH] Reversed broken "fix" of @@ processing --- doc/texi2pod.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl index daad3f6d..bcb276c6 100755 --- a/doc/texi2pod.pl +++ b/doc/texi2pod.pl @@ -204,9 +204,9 @@ while(<$inf>) { # Now the ones that have to be replaced by special escapes # (which will be turned back into text by unmunge()) s/&/&/g; + s/\@\@/&at;/g; s/\@\{/{/g; s/\@\}/}/g; - s/\@\@/&at;/g; # Inside a verbatim block, handle @var specially. if ($shift ne "") { -- 2.39.2