]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autom4te.in (handle_traces): Handle @&t@ in traces.
authorAkim Demaille <akim@epita.fr>
Wed, 23 Oct 2002 07:37:38 +0000 (07:37 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 23 Oct 2002 07:37:38 +0000 (07:37 +0000)
Reported by Peter Eisentraut.

ChangeLog
bin/autom4te.in

index cf2b99ae8de78f013ea4991892b55529854c437c..7b5eb916d24db73b2fdb1608e1566b8ad3ae80a8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-23  Akim Demaille  <akim@epita.fr>
+
+       * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
+       Reported by Peter Eisentraut.
+
 2002-10-23  Akim Demaille  <akim@epita.fr>
 
        * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
index 77f94a0ef7aeb49edb5beb12fb3ed8582634eb5b..8bb70d966c49ccfc8b12d85c76b80111fd273be7 100644 (file)
@@ -999,9 +999,9 @@ EOF
   my $in = new Autom4te::XFile ("$m4 $tmp/traces.m4 |");
   my $out = new Autom4te::XFile (">$output");
 
-  # FIXME: Hm... This is dubious: should we really transform the
-  # quadrigraphs in traces?  It might break balanced [ ] etc. in the
-  # output.
+  # This is dubious: should we really transform the quadrigraphs in
+  # traces?  It might break balanced [ ] etc. in the output.  The
+  # consensus seeems to be that traces are more useful this way.
   while ($_ = $in->getline)
     {
       # It makes no sense to try to transform __oline__.
@@ -1009,6 +1009,7 @@ EOF
       s/\@:>\@/]/g;
       s/\@\$\|\@/\$/g;
       s/\@%:\@/#/g;
+      s/\@&t\@//g;
       print $out $_;
     }
 }