Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
49a4e8df
Commit
49a4e8df
authored
Jul 19, 2010
by
Aric Stewart
Committed by
Alexandre Julliard
Jul 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Update wctype table to represent windows 7 values.
parent
9f32d6d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
14 deletions
+12
-14
cpmap.pl
libs/wine/cpmap.pl
+12
-14
wctype.c
libs/wine/wctype.c
+0
-0
No files found.
libs/wine/cpmap.pl
View file @
49a4e8df
...
...
@@ -118,22 +118,22 @@ my %categories =
(
"Lu"
=>
$ctype
{
"alpha"
}
|
$ctype
{
"upper"
},
# Letter, Uppercase
"Ll"
=>
$ctype
{
"alpha"
}
|
$ctype
{
"lower"
},
# Letter, Lowercase
"Lt"
=>
$ctype
{
"alpha"
},
# Letter, Titlecase
"Mn"
=>
$ctype
{
"punct"
},
# Mark, Non-Spacing
"Mc"
=>
$ctype
{
"punct"
},
# Mark, Spacing Combining
"Me"
=>
$ctype
{
"punct"
},
# Mark, Enclosing
"Lt"
=>
$ctype
{
"alpha"
}
|
$ctype
{
"upper"
}
|
$ctype
{
"lower"
}
,
# Letter, Titlecase
"Mn"
=>
0
,
# Mark, Non-Spacing
"Mc"
=>
0
,
# Mark, Spacing Combining
"Me"
=>
0
,
# Mark, Enclosing
"Nd"
=>
$ctype
{
"digit"
},
# Number, Decimal Digit
"Nl"
=>
$ctype
{
"
punct
"
},
# Number, Letter
"No"
=>
$ctype
{
"punct"
},
# Number, Other
"Nl"
=>
$ctype
{
"
alpha
"
},
# Number, Letter
"No"
=>
0
,
# Number, Other
"Zs"
=>
$ctype
{
"space"
},
# Separator, Space
"Zl"
=>
$ctype
{
"space"
},
# Separator, Line
"Zp"
=>
$ctype
{
"space"
},
# Separator, Paragraph
"Cc"
=>
$ctype
{
"cntrl"
},
# Other, Control
"Cf"
=>
0
,
# Other, Format
"Cf"
=>
$ctype
{
"cntrl"
},
# Other, Format
"Cs"
=>
0
,
# Other, Surrogate
"Co"
=>
0
,
# Other, Private Use
"Cn"
=>
0
,
# Other, Not Assigned
"Lm"
=>
$ctype
{
"
punct
"
},
# Letter, Modifier
"Lm"
=>
$ctype
{
"
alpha
"
},
# Letter, Modifier
"Lo"
=>
$ctype
{
"alpha"
},
# Letter, Other
"Pc"
=>
$ctype
{
"punct"
},
# Punctuation, Connector
"Pd"
=>
$ctype
{
"punct"
},
# Punctuation, Dash
...
...
@@ -142,10 +142,10 @@ my %categories =
"Pi"
=>
$ctype
{
"punct"
},
# Punctuation, Initial quote
"Pf"
=>
$ctype
{
"punct"
},
# Punctuation, Final quote
"Po"
=>
$ctype
{
"punct"
},
# Punctuation, Other
"Sm"
=>
$ctype
{
"punct"
},
# Symbol, Math
"Sc"
=>
$ctype
{
"punct"
},
# Symbol, Currency
"Sk"
=>
$ctype
{
"punct"
},
# Symbol, Modifier
"So"
=>
$ctype
{
"punct"
}
# Symbol, Other
"Sm"
=>
0
,
# Symbol, Math
"Sc"
=>
0
,
# Symbol, Currency
"Sk"
=>
0
,
# Symbol, Modifier
"So"
=>
0
# Symbol, Other
);
# a few characters need additional categories that cannot be determined automatically
...
...
@@ -290,12 +290,10 @@ sub READ_DEFAULTS($)
if
(
$lower
ne
""
)
{
$tolower_table
[
$src
]
=
hex
$lower
;
$category_table
[
$src
]
|=
$ctype
{
"upper"
}
|
$ctype
{
"alpha"
};
}
if
(
$upper
ne
""
)
{
$toupper_table
[
$src
]
=
hex
$upper
;
$category_table
[
$src
]
|=
$ctype
{
"lower"
}
|
$ctype
{
"alpha"
};
}
if
(
$dec
ne
""
)
{
...
...
libs/wine/wctype.c
View file @
49a4e8df
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment