diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-06-21 11:00:38 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-06-21 11:00:58 -0700 |
commit | 3d9fa1399e13b8a37c9ace6d812521d51995d95f (patch) | |
tree | ceb59da4dd1a03f4c95ab3d4eb16b88aaf10c41b /lib | |
parent | aa5f20ecd0056ba8ddace765c1476a7e5b14f1d4 (diff) | |
download | autoconf-3d9fa1399e13b8a37c9ace6d812521d51995d95f.tar.gz |
* lib/autoconf/functions.m4 (HAVE_DOPRNT): Fix missing-comma typo.
Reported by Peter Breitenlohner in:
http://lists.gnu.org/archive/html/autoconf-patches/2013-06/msg00007.html
Diffstat (limited to 'lib')
-rw-r--r-- | lib/autoconf/functions.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/autoconf/functions.m4 b/lib/autoconf/functions.m4 index f994a4a1..b544fcd6 100644 --- a/lib/autoconf/functions.m4 +++ b/lib/autoconf/functions.m4 @@ -2015,7 +2015,7 @@ AU_ALIAS([AC_VFORK], [AC_FUNC_FORK]) # Why the heck is that _doprnt does not define HAVE__DOPRNT??? # That the logical name! AC_DEFUN([AC_FUNC_VPRINTF], -[AC_CHECK_FUNCS(vprintf, [] +[AC_CHECK_FUNCS(vprintf, [], [AC_CHECK_FUNC(_doprnt, [AC_DEFINE(HAVE_DOPRNT, 1, [Define to 1 if you don't have `vprintf' but do have |