]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
(_AC_FUNC_REALLOC_IF, AC_FUNC_REALLOC): Fix typo in comment.
authorJim Meyering <meyering@lucent.com>
Sun, 6 Feb 2005 18:06:32 +0000 (18:06 +0000)
committerJim Meyering <meyering@lucent.com>
Sun, 6 Feb 2005 18:06:32 +0000 (18:06 +0000)
lib/autoconf/functions.m4

index e777372b76ae332f9ff7a469e87201934eccf8e3..569aa71de9c4e83fa3a2c37b0ad1cb3444a3f89f 100644 (file)
@@ -1299,7 +1299,7 @@ AU_ALIAS([AM_FUNC_OBSTACK], [AC_FUNC_OBSTACK])
 
 # _AC_FUNC_REALLOC_IF(IF-WORKS, IF-NOT)
 # -------------------------------------
-# If `realloc (0, 0)' properly handled, run IF-WORKS, otherwise, IF-NOT.
+# If `realloc (0, 0)' is properly handled, run IF-WORKS, otherwise, IF-NOT.
 AC_DEFUN([_AC_FUNC_REALLOC_IF],
 [AC_REQUIRE([AC_HEADER_STDC])dnl
 AC_CHECK_HEADERS(stdlib.h)
@@ -1322,7 +1322,7 @@ AS_IF([test $ac_cv_func_realloc_0_nonnull = yes], [$1], [$2])
 
 # AC_FUNC_REALLOC
 # ---------------
-# Report whether `realloc (0, 0)' properly handled, and replace realloc if
+# Report whether `realloc (0, 0)' is properly handled, and replace realloc if
 # needed.
 AN_FUNCTION([realloc], [AC_FUNC_REALLOC])
 AC_DEFUN([AC_FUNC_REALLOC],