mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
add EUR for € ascii fallback
This commit is contained in:
parent
5503b9daea
commit
fd596409b8
@ -514,6 +514,9 @@ pa_map_escape(char *buf, int32 len, int32 *esc_len, unsigned char *out,
|
||||
*/
|
||||
switch(unicode)
|
||||
{
|
||||
case 0x20AC:
|
||||
r = "EUR";
|
||||
break;
|
||||
case 0x00A9:
|
||||
switch(win_csid)
|
||||
{
|
||||
@ -568,6 +571,9 @@ pa_map_escape(char *buf, int32 len, int32 *esc_len, unsigned char *out,
|
||||
*/
|
||||
switch(unicode)
|
||||
{
|
||||
case 0x20AC:
|
||||
r = "EUR";
|
||||
break;
|
||||
case 0x00A9:
|
||||
switch(win_csid)
|
||||
{
|
||||
@ -639,6 +645,9 @@ pa_map_escape(char *buf, int32 len, int32 *esc_len, unsigned char *out,
|
||||
#ifdef XP_UNIX
|
||||
switch(unicode)
|
||||
{
|
||||
case 0x20AC:
|
||||
r = "EUR";
|
||||
break;
|
||||
case 0x00A9:
|
||||
switch(win_csid)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user