summaryrefslogtreecommitdiff
path: root/data/charwidths.jl
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2015-10-31 18:13:25 -0400
committerSteven G. Johnson <stevenj@mit.edu>2015-10-31 18:13:25 -0400
commita5c9de204717d619ddb2fa4eb994542bb3cfc157 (patch)
treedcb694a5b28a802e119c46f7bf8c2a62b45a462d /data/charwidths.jl
parentf67f1a72f7bbaac8dbf08a183193ac82641cd34b (diff)
parentb10b64dc10fc4c5ca236e85a620ee78e503e201c (diff)
downloadlibutf8proc-a5c9de204717d619ddb2fa4eb994542bb3cfc157.tar.gz
libutf8proc-a5c9de204717d619ddb2fa4eb994542bb3cfc157.tar.bz2
Merge pull request #58 from petercolberg/master
Fix build warnings
Diffstat (limited to 'data/charwidths.jl')
-rw-r--r--data/charwidths.jl18
1 files changed, 12 insertions, 6 deletions
diff --git a/data/charwidths.jl b/data/charwidths.jl
index 417483c..bdcbc6c 100644
--- a/data/charwidths.jl
+++ b/data/charwidths.jl
@@ -8,8 +8,14 @@
#############################################################################
# Julia 0.3/0.4 compatibility (taken from Compat package)
+if VERSION < v"0.4.0-dev+1387"
+ typealias AbstractString String
+end
if VERSION < v"0.4.0-dev+1419"
- const UInt16 = Uint16
+ const UInt32 = Uint32
+end
+if VERSION < v"0.4.0-dev+3874"
+ Base.parse{T<:Integer}(::Type{T}, s::AbstractString) = parseint(T, s)
end
CharWidths = Dict{Int,Int}()
@@ -52,7 +58,7 @@ end
# Widths from GNU Unifont
#Read sfdfile for character widths
-function parsesfd(filename::String, CharWidths::Dict{Int,Int}=Dict{Int,Int}())
+function parsesfd(filename::AbstractString, CharWidths::Dict{Int,Int}=Dict{Int,Int}())
state=:seekchar
lineno = 0
codepoint = width = nothing
@@ -65,8 +71,8 @@ function parsesfd(filename::String, CharWidths::Dict{Int,Int}=Dict{Int,Int}())
state = :readdata
end
elseif state==:readdata #Encoding: 65538 -1 2, Width: 1024
- contains(line, "Encoding:") && (codepoint = int(split(line)[3]))
- contains(line, "Width:") && (width = int(split(line)[2]))
+ contains(line, "Encoding:") && (codepoint = parse(Int, split(line)[3]))
+ contains(line, "Width:") && (width = parse(Int, split(line)[2]))
if codepoint!=nothing && width!=nothing && codepoint >= 0
w=div(width, 512) # 512 units to the en
if w > 0
@@ -100,8 +106,8 @@ for line in readlines(open("EastAsianWidth.txt"))
width = strip(tokens[2])
#Parse code point range into Julia UnitRange
rangetokens = split(charrange, "..")
- charstart = uint32("0x"*rangetokens[1])
- charend = uint32("0x"*rangetokens[length(rangetokens)>1 ? 2 : 1])
+ charstart = parse(UInt32, "0x"*rangetokens[1])
+ charend = parse(UInt32, "0x"*rangetokens[length(rangetokens)>1 ? 2 : 1])
#Assign widths
for c in charstart:charend