Skip to content

Commit ac997eb

Browse files
authored
Merge pull request #12 from JuliaString/spj/fixinit
Fix update to init
2 parents 3431334 + debf716 commit ac997eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Unicode_Entities.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ end
4343
function __init__()
4444
(ver, tim, inf, base32, nam, ind, wrd1, wrd2, val16, ind16, val32, ind32) =
4545
StrTables.load(joinpath(Pkg.dir("Unicode_Entities"), "data", "unicode.dat"))
46-
global default = Unicode_Table(ver, tim, inf, base32, PackedNames(nam, wrd1, wrd2), ind,
46+
global default = Unicode_Table(ver, tim, inf, base32,
47+
PackedNames(nam.offsetvec, nam.namtab, wrd1, wrd2),
48+
ind, val16, ind16, val32, ind32)
4749
end
4850

4951
"""

0 commit comments

Comments
 (0)