Mercurial > emacs
changeset 31874:8db5d996cfdb
Fix typo in __GNUC_MINOR__.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 25 Sep 2000 14:25:02 +0000 |
parents | 3440ceda4745 |
children | 11ea7b711a85 |
files | src/config.in |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/config.in Mon Sep 25 14:24:23 2000 +0000 +++ b/src/config.in Mon Sep 25 14:25:02 2000 +0000 @@ -548,7 +548,8 @@ /* Should we enable expensive run-time checking of data types? */ #undef ENABLE_CHECKING -#if defined __GNUC__ && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR >= 5)) +#if defined __GNUC__ && (__GNUC__ > 2 \ + || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)) #define NO_RETURN __attribute__ ((__noreturn__)) #else #define NO_RETURN /* nothing */