]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix underquoted example in manual.
authorEric Blake <ebb9@byu.net>
Tue, 24 Mar 2009 11:58:52 +0000 (05:58 -0600)
committerEric Blake <ebb9@byu.net>
Tue, 24 Mar 2009 12:02:06 +0000 (06:02 -0600)
* doc/autoconf.texi (Common Shell Constructs) <AS_TR_CPP>:
Properly m4-quote #.
* THANKS: Update spelling.
Reported by Matěj Týč.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
THANKS
doc/autoconf.texi

index 3829924fa4f12d74d193b2579f891ffa6e9f908a..f6b82e5dd1db4b9b7f3c5cdd72c0b8108e272ea4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-03-24  Eric Blake  <ebb9@byu.net>
+
+       Fix underquoted example in manual.
+       * doc/autoconf.texi (Common Shell Constructs) <AS_TR_CPP>:
+       Properly m4-quote #.
+       * THANKS: Update spelling.
+       Reported by Matěj Týč.
+
 2009-03-18  Eric Blake  <ebb9@byu.net>
 
        Manual: mention more expr pitfalls.
diff --git a/THANKS b/THANKS
index 8d8bb37a4080d5d72c594fee19b8f83f9409a333..6c9da3bd9b86846e7eef05361a174f2ce7726d17 100644 (file)
--- 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
index a4cb0d1533ff48578b8fbd5b6b517de516e0ee2a..5e490fec3e011416839ad615d47b094f45183198 100644 (file)
@@ -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