ignore 'expect-fail' forms in elisp tests
[bpt/guile.git] / libguile / locale-categories.h
CommitLineData
c84f25bc 1/* Copyright (C) 2006, 2008, 2014 Free Software Foundation, Inc.
5b3a39c7
LC
2 *
3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
5b3a39c7 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
5b3a39c7
LC
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
5b3a39c7
LC
17 */
18
19/* A list of all available locale categories, not including `ALL'. */
20
21
22/* The six standard categories, as defined in IEEE Std 1003.1-2001. */
23SCM_DEFINE_LOCALE_CATEGORY (COLLATE)
24SCM_DEFINE_LOCALE_CATEGORY (CTYPE)
c5cd474d 25
c84f25bc
LC
26#if defined(LC_MESSAGES) && !(defined(LC_MAX) && LC_MESSAGES > LC_MAX)
27/* MinGW doesn't have `LC_MESSAGES'. libintl.h might define
28 `LC_MESSAGES' for MinGW to an arbitrary large value which we cannot
29 use in a call to `setlocale'. */
5b3a39c7 30SCM_DEFINE_LOCALE_CATEGORY (MESSAGES)
c5cd474d
LC
31#endif
32
5b3a39c7
LC
33SCM_DEFINE_LOCALE_CATEGORY (MONETARY)
34SCM_DEFINE_LOCALE_CATEGORY (NUMERIC)
35SCM_DEFINE_LOCALE_CATEGORY (TIME)
36
37/* Additional non-standard categories. */
38#ifdef LC_PAPER
39SCM_DEFINE_LOCALE_CATEGORY (PAPER)
40#endif
41#ifdef LC_NAME
42SCM_DEFINE_LOCALE_CATEGORY (NAME)
43#endif
44#ifdef LC_ADDRESS
45SCM_DEFINE_LOCALE_CATEGORY (ADDRESS)
46#endif
47#ifdef LC_TELEPHONE
48SCM_DEFINE_LOCALE_CATEGORY (TELEPHONE)
49#endif
50#ifdef LC_MEASUREMENT
51SCM_DEFINE_LOCALE_CATEGORY (MEASUREMENT)
52#endif
53#ifdef LC_IDENTIFICATION
54SCM_DEFINE_LOCALE_CATEGORY (IDENTIFICATION)
55#endif