mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-17 14:01:27 +08:00
* bin/autom4te.in (handle_traces): Handle @&t@ in traces.
Reported by Peter Eisentraut.
This commit is contained in:
parent
38999f6a79
commit
3c17011eec
@ -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
|
||||
|
@ -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 $_;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user