From: Eric Blake Date: Tue, 24 Mar 2009 11:58:52 +0000 (-0600) Subject: Fix underquoted example in manual. X-Git-Tag: v2.63b~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbcfd3b29f339ac0ca2f18685258c02b0e45889c;p=thirdparty%2Fautoconf.git Fix underquoted example in manual. * doc/autoconf.texi (Common Shell Constructs) : Properly m4-quote #. * THANKS: Update spelling. Reported by Matěj Týč. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 3829924fa..f6b82e5dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-03-24 Eric Blake + + Fix underquoted example in manual. + * doc/autoconf.texi (Common Shell Constructs) : + Properly m4-quote #. + * THANKS: Update spelling. + Reported by Matěj Týč. + 2009-03-18 Eric Blake Manual: mention more expr pitfalls. diff --git a/THANKS b/THANKS index 8d8bb37a4..6c9da3bd9 100644 --- a/THANKS +++ b/THANKS @@ -232,7 +232,7 @@ Martin Koeppe mkoeppe@gmx.de Martin Mokrejs mmokrejs@natur.cuni.cz Martin Wilck martin@tropos.de Martyn Johnson Martyn.Johnson@cl.cam.ac.uk -Matej Tyc matej.tyc@gmail.com +Matěj Týč matej.tyc@gmail.com Matteo Frigo ? Matthew D. Langston langston@SLAC.Stanford.EDU Matthew Mueller donut@azstarnet.com diff --git a/doc/autoconf.texi b/doc/autoconf.texi index a4cb0d153..5e490fec3 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -12451,8 +12451,9 @@ For example: @example # This outputs "#define HAVE_CHAR_P 1". +# Notice the m4 quoting around #, to prevent an m4 comment type="char *" -echo "#define AS_TR_CPP([HAVE_$type]) 1" +echo "[#]define AS_TR_CPP([HAVE_$type]) 1" @end example @end defmac