]> sjero.net Git - wget/commitdiff
[svn] Correctly handle @samp{foo@@}.
authorhniksic <devnull@localhost>
Sat, 23 Apr 2005 09:36:55 +0000 (02:36 -0700)
committerhniksic <devnull@localhost>
Sat, 23 Apr 2005 09:36:55 +0000 (02:36 -0700)
doc/ChangeLog
doc/texi2pod.pl.in

index 5928526767e9b724e60502246151dd8d525ec982..4b95948f94424eccc1b90ae0eb7d879f4ad20086 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-23  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * texi2pod.pl.in: First process @@ then @}, so @samp{-wget@@} is
+       interpreted correctly.
+
 2005-04-20  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * wget.texi: Document behavior of -6 wrt mapped IPv4 addresses.
index dc81e747c9a34a9adca695815fd64a061d3136f4..b2a3d385bafa64ac438769130f76ab9d5a21901c 100644 (file)
@@ -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/&/&amp;/g;
+    s/\@\@/&at;/g;
     s/\@\{/&lbrace;/g;
     s/\@\}/&rbrace;/g;
-    s/\@\@/&at;/g;
 
     # Inside a verbatim block, handle @var specially.
     if ($shift ne "") {