Module Name: src
Committed By: msaitoh
Date: Tue Jul 30 02:28:20 UTC 2013
Modified Files:
src/usr.bin/mklocale [netbsd-5]: mklocaledb.c
Log Message:
Pull up following revision(s) (requested by joerg in ticket #1869):
usr.bin/mklocale/mklocaledb.c: revision 1.3
Swap order of _CITRUS_LC_MONETARY_SYM_INT_N_CS_PRECEDES and
_CITRUS_LC_MONETARY_SYM_INT_P_SEP_BY_SPACE to match data files.
To generate a diff of this commit:
cvs rdiff -u -r1.2.2.3 -r1.2.2.4 src/usr.bin/mklocale/mklocaledb.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/mklocale/mklocaledb.c
diff -u src/usr.bin/mklocale/mklocaledb.c:1.2.2.3 src/usr.bin/mklocale/mklocaledb.c:1.2.2.4
--- src/usr.bin/mklocale/mklocaledb.c:1.2.2.3 Thu Jan 15 03:57:38 2009
+++ src/usr.bin/mklocale/mklocaledb.c Tue Jul 30 02:28:20 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: mklocaledb.c,v 1.2.2.3 2009/01/15 03:57:38 snj Exp $ */
+/* $NetBSD: mklocaledb.c,v 1.2.2.4 2013/07/30 02:28:20 msaitoh Exp $ */
/*-
* Copyright (c)2008 Citrus Project,
@@ -37,7 +37,7 @@
#include <sys/cdefs.h>
#if !defined(lint)
-__RCSID("$NetBSD: mklocaledb.c,v 1.2.2.3 2009/01/15 03:57:38 snj Exp $");
+__RCSID("$NetBSD: mklocaledb.c,v 1.2.2.4 2013/07/30 02:28:20 msaitoh Exp $");
#endif /* not lint */
#include <assert.h>
@@ -136,8 +136,8 @@ static const category_t lc_monetary = {
{ _CITRUS_LC_MONETARY_SYM_P_SIGN_POSN, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_N_SIGN_POSN, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_INT_P_CS_PRECEDES, &save_as_uint8 },
- { _CITRUS_LC_MONETARY_SYM_INT_N_CS_PRECEDES, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_INT_P_SEP_BY_SPACE, &save_as_uint8 },
+ { _CITRUS_LC_MONETARY_SYM_INT_N_CS_PRECEDES, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_INT_N_SEP_BY_SPACE, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_INT_P_SIGN_POSN, &save_as_uint8 },
{ _CITRUS_LC_MONETARY_SYM_INT_N_SIGN_POSN, &save_as_uint8 },