summaryrefslogtreecommitdiffstats
path: root/usr.bin/localedef
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-03-20 03:27:06 +0000
committerpfg <pfg@FreeBSD.org>2016-03-20 03:27:06 +0000
commit34220e27d8f100e547669948e81a9d1155200ee1 (patch)
tree828d6c97d66bf1a64328a34f5ed2a217a829e71a /usr.bin/localedef
parent9533d74078370506cd6de18483d044bb992af94c (diff)
downloadFreeBSD-src-34220e27d8f100e547669948e81a9d1155200ee1.zip
FreeBSD-src-34220e27d8f100e547669948e81a9d1155200ee1.tar.gz
localedef(1): minor sorting to match Illumos.
Illumos recently included space in 'print' class. We already had this but the code had slight sorting differences. Move it some lines up to reduce diffs with Illumos. No functional change. Reference: https://illumos.org/issues/5227
Diffstat (limited to 'usr.bin/localedef')
-rw-r--r--usr.bin/localedef/ctype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/localedef/ctype.c b/usr.bin/localedef/ctype.c
index d610833..e737ed5 100644
--- a/usr.bin/localedef/ctype.c
+++ b/usr.bin/localedef/ctype.c
@@ -332,14 +332,14 @@ dump_ctype(void)
ctn->ctype |= _ISLOWER;
if ((wc >= '0') && (wc <= '9'))
ctn->ctype |= _ISDIGIT;
+ if (wc == ' ')
+ ctn->ctype |= _ISPRINT;
if (strchr(" \f\n\r\t\v", (char)wc) != NULL)
ctn->ctype |= _ISSPACE;
if (strchr("0123456789ABCDEFabcdef", (char)wc) != NULL)
ctn->ctype |= _ISXDIGIT;
if (strchr(" \t", (char)wc))
ctn->ctype |= _ISBLANK;
- if (wc == ' ')
- ctn->ctype |= _ISPRINT;
/*
* Technically these settings are only
OpenPOWER on IntegriCloud