]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (autoconf Invocation): Fix typos in trace
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 11 Mar 2006 13:15:55 +0000 (13:15 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 11 Mar 2006 13:15:55 +0000 (13:15 +0000)
example.  Do not emphasize `$%', it is hardly new and special.
Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.

ChangeLog
doc/autoconf.texi

index cf2ba14eb329f38ed92db39ba8c628011512d0f3..700b9d4f7c4cc4687469657e7c3c27f7716b370d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 3235e02c544e77bbb0342f22e8c228db1c5357ab..d0e47d4a49f23eea59e2fd82458f359aa5b685de 100644 (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