diff options
author | Bruno Haible <bruno@clisp.org> | 2004-08-18 11:06:06 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:53 +0200 |
commit | 5d52f09afba23547992da878ab898676c225ec65 (patch) | |
tree | 0970c312d4098034056b59bf7d31ce93bfb72e7a /gettext-runtime/intl/libgnuintl.h.in | |
parent | 3179730b31d1c3af2c5dbcab8a7c0be38c3c8970 (diff) | |
download | external_gettext-5d52f09afba23547992da878ab898676c225ec65.zip external_gettext-5d52f09afba23547992da878ab898676c225ec65.tar.gz external_gettext-5d52f09afba23547992da878ab898676c225ec65.tar.bz2 |
Fix the __GNU_GETTEXT_SUPPORTED_REVISION macro.
Diffstat (limited to 'gettext-runtime/intl/libgnuintl.h.in')
-rw-r--r-- | gettext-runtime/intl/libgnuintl.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-runtime/intl/libgnuintl.h.in b/gettext-runtime/intl/libgnuintl.h.in index 3be7eb9..afc21da 100644 --- a/gettext-runtime/intl/libgnuintl.h.in +++ b/gettext-runtime/intl/libgnuintl.h.in @@ -1,5 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. + Copyright (C) 1995-1997, 2000-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published @@ -39,7 +39,7 @@ /* Provide information about the supported file formats. Returns the maximum minor revision number supported for a given major revision. */ #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ - ((major) == 0 ? 1 : -1) + ((major) == 0 || (major) == 1 ? 1 : -1) /* Resolve a platform specific conflict on DJGPP. GNU gettext takes precedence over _conio_gettext. */ |