diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-10-26 16:27:05 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-10-26 16:27:05 +0000 |
commit | 618425776f3c2632152e75dd19885a1bc55371c8 (patch) | |
tree | 0cf38c55ebf005044fe6d4643779538e906e7e88 /bin/csh/const.c | |
parent | db0279f8ac9ff5cba34335bb38abc89dab01c9d1 (diff) |
Clean up cruft made visible by the NLS unifdefing:
* remove setlocale() calls
* remove write-only variable AsciiOnly
* remove now unused string constants STRLANG, STRLC_CTYPE
* remove hardcoded support for ISO8859-1
ok millert@
Diffstat (limited to 'bin/csh/const.c')
-rw-r--r-- | bin/csh/const.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/csh/const.c b/bin/csh/const.c index 0038d1cb641..9307f2d370d 100644 --- a/bin/csh/const.c +++ b/bin/csh/const.c @@ -1,4 +1,4 @@ -/* $OpenBSD: const.c,v 1.7 2015/06/17 03:48:21 deraadt Exp $ */ +/* $OpenBSD: const.c,v 1.8 2015/10/26 16:27:04 naddy Exp $ */ /* $NetBSD: const.c,v 1.6 1995/03/21 09:02:31 cgd Exp $ */ /*- @@ -39,8 +39,6 @@ Char STR0[] = { '0', '\0' }; Char STR1[] = { '1', '\0' }; Char STRHOME[] = { 'H', 'O', 'M', 'E', '\0' }; -Char STRLANG[] = { 'L', 'A', 'N', 'G', '\0' }; -Char STRLC_CTYPE[] = { 'L', 'C', '_', 'C', 'T', 'Y', 'P', 'E' ,'\0' }; Char STRLOGNAME[] = { 'L', 'O', 'G', 'N', 'A', 'M', 'E', '\0' }; Char STRLbrace[] = { '{', '\0' }; Char STRLparen[] = { '(', '\0' }; |