From: Eric Blake Date: Tue, 11 Jan 2011 23:17:55 +0000 (-0700) Subject: docs: fix description of m4_ifval X-Git-Tag: v2.68b~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65cdbf1393cfda2c061715e968bfb64467f481f4;p=thirdparty%2Fautoconf.git docs: fix description of m4_ifval * doc/autoconf.texi (Conditional constructs) : Use correct argument order. * THANKS: Update. Reported by Mostafa. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index acae9321..4c8fd490 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-01-12 Eric Blake + + docs: fix description of m4_ifval + * doc/autoconf.texi (Conditional constructs) : Use + correct argument order. + * THANKS: Update. + Reported by Mostafa. + 2011-01-10 Ralf Wildenhues Avoid reference to $CYGWIN in Fortran macros. diff --git a/THANKS b/THANKS index 3d7905f8..e0bd6c1d 100644 --- a/THANKS +++ b/THANKS @@ -283,6 +283,7 @@ Mo DeJong mdejong@cygnus.com Momchil Velkov velco@fadata.bg Monty Taylor mordred@inaugust.com Morten Eriksen mortene@sim.no +Mostafa mostafa_working_away@yahoo.com Motoyuki Kasahara m-kasahr@sra.co.jp Nathan Schulte reklipz@gmail.com Nathanael Nerode neroden@gcc.gnu.org diff --git a/doc/autoconf.texi b/doc/autoconf.texi index b999f03f..9f5494ee 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -11881,7 +11881,7 @@ except that it is not an error if @var{macro} is undefined. Expands to @var{if-true} if @var{cond} is not empty, otherwise to @var{if-false}. This is shorthand for: @example -m4_if([@var{cond}], [], [@var{if-true}], [@var{if-false}]) +m4_if([@var{cond}], [], [@var{if-false}], [@var{if-true}]) @end example @end defmac