From: Eric Blake Date: Thu, 6 Mar 2008 15:20:48 +0000 (-0700) Subject: Minor documentation fix. X-Git-Tag: v2.62~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd8b6f47277e16cd3e4f245f4b2294b0de73cce5;p=thirdparty%2Fautoconf.git Minor documentation fix. * doc/autoconf.texi (Evaluation Macros): Fix typo. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index cf144bf1..0281018c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-06 Eric Blake + + Minor documentation fix. + * doc/autoconf.texi (Evaluation Macros): Fix typo. + 2008-03-04 Eric Blake Make AT_CHECK act like a simple command. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 83aec6f4..4e24e318 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -10933,7 +10933,7 @@ scenarios: not using these macros, using @code{m4_defn}, using @example $ @kbd{cat example.m4} -# Overquote, so that quotes are visible. +dnl Overquote, so that quotes are visible. m4_define([show], [$[]1 = [$1], $[]@@ = [$@@]]) m4_define([a], [A]) m4_define([mkargs], [1, 2[,] 3]) @@ -10963,7 +10963,7 @@ mkargs 1, 2[,] 3 1,2, 3 [1],[2, 3] -1,2, 3 +1, 2, 3 @end example