diff options
| author | Rui Hirokawa <hirokawa@php.net> | 2002-05-05 11:42:18 +0000 | 
|---|---|---|
| committer | Rui Hirokawa <hirokawa@php.net> | 2002-05-05 11:42:18 +0000 | 
| commit | b7321edb842eea687cfea08c987b84884ee74699 (patch) | |
| tree | 9c811d6b296834f33b7e47c66e8a61c7c22ed9e0 /ext/mbstring/unicode_table.h | |
| parent | b7e50782b75569bfa043ff9dd4cf45ed194cbd88 (diff) | |
| download | php-git-b7321edb842eea687cfea08c987b84884ee74699.tar.gz | |
bug fixed in unicode -> cp1252 table.
Diffstat (limited to 'ext/mbstring/unicode_table.h')
| -rw-r--r-- | ext/mbstring/unicode_table.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mbstring/unicode_table.h b/ext/mbstring/unicode_table.h index 7b699ea10a..884e6e37ae 100644 --- a/ext/mbstring/unicode_table.h +++ b/ext/mbstring/unicode_table.h @@ -16,10 +16,10 @@   * This table differs from the rest of the unicode tables below   * as it only covers this range, while the rest cover 0xa0 onwards */  static const unsigned short cp1252_ucs_table[] = { - 0xfffe,0xfffe,0x201a,0x0192,0x201e,0x2026,0x2020,0x2021, - 0x02c6,0x2030,0x0160,0x2039,0x0152,0xfffe,0xfffe,0xfffe, - 0xfffe,0x2018,0x2019,0x201c,0x201d,0x2022,0x2013,0x02dc, - 0x2122,0x0161,0x203a,0x0153,0xfffe,0xfffe,0x0178 + 0x20ac,0xfffe,0x201a,0x0192,0x201e,0x2026,0x2020,0x2021, + 0x02c6,0x2030,0x0160,0x2039,0x0152,0xfffe,0x017d,0xfffe, + 0xfffe,0x2018,0x2019,0x201c,0x201d,0x2022,0x2013,0x2014, + 0x02dc,0x2122,0x0161,0x203a,0x0153,0xfffe,0x017e,0x0178  };  | 
