summaryrefslogtreecommitdiffstats
path: root/regexp/parse-unidata.awk
diff options
context:
space:
mode:
Diffstat (limited to 'regexp/parse-unidata.awk')
-rw-r--r--regexp/parse-unidata.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/regexp/parse-unidata.awk b/regexp/parse-unidata.awk
index 8bdc0bf8b..b9ed351ee 100644
--- a/regexp/parse-unidata.awk
+++ b/regexp/parse-unidata.awk
@@ -32,17 +32,17 @@ BEGIN {
}
{
- code = strtonum(("0x" $1))
+ code = int("0x" $1)
name = $2
class = $3
upper = $13
lower = $14
title = $15
- if (code <= 0x7f) {
+ if (code <= 127) {
next
}
- if (code > 0xffff) {
+ if (code > 65535) {
next
}
if ($3 !~ /^L.*/) {