]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* THANKS: Update.
authorEric Blake <ebb9@byu.net>
Thu, 26 Oct 2006 16:32:11 +0000 (16:32 +0000)
committerEric Blake <ebb9@byu.net>
Thu, 26 Oct 2006 16:32:11 +0000 (16:32 +0000)
* doc/autoconf.texi (Evaluation Macros): Improve the example to
show effect on macros that expand with commas.
Reported by Joel E. Denny.

ChangeLog
THANKS
doc/autoconf.texi

index 7427f11f909b5efd8206c16bb69f6f95bd02e0ce..d44f3fe600ea3dfd7b75ab3df1ef6e6b015131b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-10-26  Eric Blake  <ebb9@byu.net>
 
+       * THANKS: Update.
+       * doc/autoconf.texi (Evaluation Macros): Improve the example to
+       show effect on macros that expand with commas.
+       Reported by Joel E. Denny.
+
        * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
        Also work with M4 1.4.8.
 
diff --git a/THANKS b/THANKS
index 66a4f243dfa3d99fde7e2aa872b5d7201d9765c7..e3e22cdd6551bb56c90030cda364573014cd8a88 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -100,6 +100,7 @@ Jeremy Yallop               jeremy@yallop.org
 Jim Blandy                  jimb@wookumz.gnu.ai.mit.edu
 Jim Meyering                meyering@ascend.com
 Jiro Takabatake             jiro@din.or.jp
+Joel E. Denny               jdenny@ces.clemson.edu
 Johan Danielsson            joda@pdc.kth.se
 John David Anglin           dave@hiauly1.hia.nrc.ca
 John Fortin                 fortinj@attglobal.net
index fd8d2c3044ebc83823d4091b9f3c55da2bf56e78..8c8e7c960ece33fb983d2e998158c6f7cca1c022 100644 (file)
@@ -9929,6 +9929,7 @@ show(m4_quote(a, b))
 show(m4_dquote(a, b))
 arg1(mkargs)
 arg1([mkargs])
+arg1(m4_defn([mkargs]))
 arg1(m4_quote(mkargs))
 arg1(m4_dquote(mkargs))
 $ @kbd{autom4te -l m4sugar example.m4}
@@ -9937,6 +9938,7 @@ $1 = a,b, $@@ = [a,b]
 $1 = [a],[b], $@@ = [[a],[b]]
 1
 mkargs
+1, 2, 3
 1,2,3
 [1],[2],[3]
 @end example