+2008-05-15 Eric Blake <ebb9@byu.net>
+
+ Fix violation of <stdbool.h> replacement in regex.
+ * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
+ Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
+
2008-05-15 Jim Meyering <meyering@redhat.com>
avoid distracting test output when git or cvs is not fount
* lib/xmalloc.c (xmemdup0): Likewise.
2008-05-13 Eric Blake <ebb9@byu.net>
- Bruno Haible <bruno@clisp.org>
+ Bruno Haible <bruno@clisp.org>
Reduce number of forks required during autoconf.
* gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
/* Extended regular expression matching and search library.
- Copyright (C) 2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+ Copyright (C) 2002,2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
__libc_lock_init (dfa->lock);
err = re_string_construct (®exp, pattern, length, preg->translate,
- syntax & RE_ICASE, dfa);
+ (syntax & RE_ICASE) != 0, dfa);
if (BE (err != REG_NOERROR, 0))
{
re_compile_internal_free_return: