diff options
| author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-09 08:19:58 +0000 |
|---|---|---|
| committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-09 08:19:58 +0000 |
| commit | 2da6f72bb78de6e6ca3d387d970cb21bf36684be (patch) | |
| tree | 7ca86535c5a6b99d4cc432ba5cfddabc5ee4ea16 /libgo/go/unicode | |
| parent | 98ea39f2b59cc0a4a0a32b095e8f0faa84fd7882 (diff) | |
| download | ppe42-gcc-2da6f72bb78de6e6ca3d387d970cb21bf36684be.tar.gz ppe42-gcc-2da6f72bb78de6e6ca3d387d970cb21bf36684be.zip | |
libgo: Update to weekly.2012-02-07.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184034 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/go/unicode')
| -rw-r--r-- | libgo/go/unicode/casetables.go | 4 | ||||
| -rw-r--r-- | libgo/go/unicode/tables.go | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libgo/go/unicode/casetables.go b/libgo/go/unicode/casetables.go index 86336b1b908..29bf167e56b 100644 --- a/libgo/go/unicode/casetables.go +++ b/libgo/go/unicode/casetables.go @@ -9,7 +9,7 @@ package unicode -var TurkishCase = _TurkishCase +var TurkishCase SpecialCase = _TurkishCase var _TurkishCase = SpecialCase{ CaseRange{0x0049, 0x0049, d{0, 0x131 - 0x49, 0}}, CaseRange{0x0069, 0x0069, d{0x130 - 0x69, 0, 0x130 - 0x69}}, @@ -17,4 +17,4 @@ var _TurkishCase = SpecialCase{ CaseRange{0x0131, 0x0131, d{0x49 - 0x131, 0, 0x49 - 0x131}}, } -var AzeriCase = _TurkishCase +var AzeriCase SpecialCase = _TurkishCase diff --git a/libgo/go/unicode/tables.go b/libgo/go/unicode/tables.go index a3b882625ef..978c48ae43e 100644 --- a/libgo/go/unicode/tables.go +++ b/libgo/go/unicode/tables.go @@ -2701,6 +2701,7 @@ var _Zs = &RangeTable{ }, } +// The following variables are of type *RangeTable: var ( Cc = _Cc // Cc is the set of Unicode characters in category Cc. Cf = _Cf // Cf is the set of Unicode characters in category Cf. @@ -4053,6 +4054,7 @@ var _Yi = &RangeTable{ }, } +// The following variables are of type *RangeTable: var ( Arabic = _Arabic // Arabic is the set of Unicode characters in script Arabic. Armenian = _Armenian // Armenian is the set of Unicode characters in script Armenian. @@ -5114,6 +5116,7 @@ var _White_Space = &RangeTable{ }, } +// The following variables are of type *RangeTable: var ( ASCII_Hex_Digit = _ASCII_Hex_Digit // ASCII_Hex_Digit is the set of Unicode characters with property ASCII_Hex_Digit. Bidi_Control = _Bidi_Control // Bidi_Control is the set of Unicode characters with property Bidi_Control. |

