Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4dded commit 0c9f978Copy full SHA for 0c9f978
src/backend/utils/mb/Unicode/UCS_to_GB18030.pl
@@ -2,7 +2,7 @@
2
#
3
# Copyright 2002 by Bill Huang
4
5
-# $Id: UCS_to_GB18030.pl,v 1.2 2002/11/12 11:33:40 ishii Exp $
+# $Id: UCS_to_GB18030.pl,v 1.3 2003/08/25 01:46:16 ishii Exp $
6
7
# Generate UTF-8 <--> GB18030 code conversion tables from
8
# map files provided by Unicode organization.
@@ -78,7 +78,7 @@
78
if( /^#/ ){
79
next;
80
}
81
- ( $c, $u, $rest ) = split;
+ ( $u, $c, $rest ) = split;
82
$ucs = hex($u);
83
$code = hex($c);
84
if( $code >= 0x80 && $ucs >= 0x0080 ){
0 commit comments