* regex.c: Fix --enable-gcc-warning glitch with GCC 4.5.2.

This commit is contained in:
Paul Eggert 2013-11-06 11:36:12 -08:00
parent 2ec9db5d1e
commit a5d376b02e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-11-06 Paul Eggert <eggert@cs.ucla.edu>
* regex.c: Fix --enable-gcc-warning glitch with GCC 4.5.2.
2013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
* xdisp.c (syms_of_xdisp): New vars redisplay--all-windows-cause and

View file

@ -43,7 +43,7 @@
# endif
#endif
#if 4 < __GNUC__ + (5 <= __GNUC_MINOR__) && ! defined __clang__
#if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) && ! defined __clang__
# pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#endif