diff options
author | tjr <tjr@FreeBSD.org> | 2004-10-17 01:08:11 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2004-10-17 01:08:11 +0000 |
commit | b956669fcf31ac8b7ee72f5ce0f608c3738031c5 (patch) | |
tree | f1f11cb1fed0aa6f9e2ce9df8e3ebfa87a9ff7e2 /usr.bin/mklocale | |
parent | b5407c1588372295fee424606446bd74d29e0764 (diff) | |
download | FreeBSD-src-b956669fcf31ac8b7ee72f5ce0f608c3738031c5.zip FreeBSD-src-b956669fcf31ac8b7ee72f5ce0f608c3738031c5.tar.gz |
Remove explicit support for generating LC_CTYPE data files that specify
the obsolete "UTF2" encoding.
Diffstat (limited to 'usr.bin/mklocale')
-rw-r--r-- | usr.bin/mklocale/mklocale.1 | 8 | ||||
-rw-r--r-- | usr.bin/mklocale/yacc.y | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/mklocale/mklocale.1 b/usr.bin/mklocale/mklocale.1 index e8b694a..e3d06a2 100644 --- a/usr.bin/mklocale/mklocale.1 +++ b/usr.bin/mklocale/mklocale.1 @@ -35,7 +35,7 @@ .\" @(#)mklocale.1 8.2 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd August 21, 2004 +.Dd October 17, 2004 .Dt MKLOCALE 1 .Os .Sh NAME @@ -166,11 +166,6 @@ and .Dq SJIS . .It Dv NONE No translation and the default. -.It Dv UTF2 -(obsolete) -.Dq "Universal character set Transformation Format" -adopted from -.Tn "Plan 9 from Bell Labs" . .It Dv UTF-8 The .Dv UTF-8 @@ -301,7 +296,6 @@ for printable runes by default. .Xr gb2312 5 , .Xr gbk 5 , .Xr mskanji 5 , -.Xr utf2 5 , .Xr utf8 5 .Sh BUGS The diff --git a/usr.bin/mklocale/yacc.y b/usr.bin/mklocale/yacc.y index da3df02..0f7106a 100644 --- a/usr.bin/mklocale/yacc.y +++ b/usr.bin/mklocale/yacc.y @@ -118,7 +118,6 @@ table : entry entry : ENCODING STRING { if (strcmp($2, "NONE") && - strcmp($2, "UTF2") && strcmp($2, "UTF-8") && strcmp($2, "EUC") && strcmp($2, "GBK") && |