diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-27 11:45:21 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-27 11:45:47 -0800 |
commit | ee7514b91beb254a7dc62f618046d34036555cea (patch) | |
tree | 7299efc4b14731bb30d013bb9594b2e7834b1d8d /lib/regex.c | |
parent | a8576aba8fa45549985566bc8be4921dce508dd9 (diff) | |
download | emacs-ee7514b91beb254a7dc62f618046d34036555cea.tar.gz |
Update from Gnulib
* build-aux/config.guess, lib/regcomp.c, lib/regex.c:
* lib/regex_internal.h, lib/regexec.c: Copy from Gnulib.
Diffstat (limited to 'lib/regex.c')
-rw-r--r-- | lib/regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/regex.c b/lib/regex.c index 2a86e107039..1fccd99f33e 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -20,10 +20,10 @@ #ifndef _LIBC # include <libc-config.h> -# if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ +# if __GNUC_PREREQ (4, 6) # pragma GCC diagnostic ignored "-Wsuggest-attribute=pure" # endif -# if (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) || 4 < __GNUC__ +# if __GNUC_PREREQ (4, 3) # pragma GCC diagnostic ignored "-Wold-style-definition" # pragma GCC diagnostic ignored "-Wtype-limits" # endif |