* doc/autoconf.texi (autoconf Invocation): Fix typos in trace

example.  Do not emphasize `$%', it is hardly new and special.
Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
This commit is contained in:
Ralf Wildenhues 2006-03-11 13:15:55 +00:00
parent cd0f024086
commit 608e17bde8
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2006-03-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* doc/autoconf.texi (autoconf Invocation): Fix typos in trace
example. Do not emphasize `$%', it is hardly new and special.
Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
* doc/autoconf.texi (Limitations of Usual Tools): Document
OpenBSD and traditional `grep' failure to handle multiple
patterns separated by newlines.

View File

@ -1401,7 +1401,7 @@ configure.ac:2:AC_SUBST:ECHO_T
@noindent
The example below highlights the difference between @samp{$@@},
@samp{$*}, and @strong{$%}.
@samp{$*}, and @samp{$%}.
@example
@group
@ -1410,12 +1410,12 @@ AC_DEFINE(This, is, [an
[example]])
$ @kbd{autoconf -t 'AC_DEFINE:@@: $@@}
*: $*
$: $%'
%: $%'
@@: [This],[is],[an
[example]]
*: This,is,an
[example]
$: This:is:an [example]
%: This:is:an [example]
@end group
@end example