]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
docs: fix description of m4_ifval
authorEric Blake <eblake@redhat.com>
Tue, 11 Jan 2011 23:17:55 +0000 (16:17 -0700)
committerEric Blake <eblake@redhat.com>
Wed, 12 Jan 2011 14:50:17 +0000 (07:50 -0700)
* doc/autoconf.texi (Conditional constructs) <m4_ifval>: Use
correct argument order.
* THANKS: Update.
Reported by Mostafa.

Signed-off-by: Eric Blake <eblake@redhat.com>
ChangeLog
THANKS
doc/autoconf.texi

index acae9321660aa4b7bd46f00a4d57ad2cf1304f3a..4c8fd490fea5d64964df79cc6b9b833020cb04e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-01-12  Eric Blake  <eblake@redhat.com>
+
+       docs: fix description of m4_ifval
+       * doc/autoconf.texi (Conditional constructs) <m4_ifval>: Use
+       correct argument order.
+       * THANKS: Update.
+       Reported by Mostafa.
+
 2011-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Avoid reference to $CYGWIN in Fortran macros.
diff --git a/THANKS b/THANKS
index 3d7905f839da7c16e563dd262a9d4fc4ee6e2c4b..e0bd6c1dd88c6092e17d20057530284c252e7d52 100644 (file)
--- 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
index b999f03fe3448040124853231b4fd382a2231a6f..9f5494eee4be3757030c3541c0027b3921671d3a 100644 (file)
@@ -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