summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-02-16 21:10:33 +0000
committerKarl Berry <karl@freefriends.org>2024-02-16 21:10:33 +0000
commitc8c0cd2543c82538d59d78da10c5692b4ae1ab5a (patch)
tree59f2f659fb47b69911a8cdd370fdeb4fefbde3c1 /Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua
parentfe3d7a739224c5613f6c0933969107c08327266c (diff)
luaotfload (15feb24)
git-svn-id: svn://tug.org/texlive/trunk@69916 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua')
-rw-r--r--Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua b/Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua
index b6c3744b8b9..429466179e0 100644
--- a/Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua
+++ b/Master/texmf-dist/tex/luatex/luaotfload/fontloader-l-table.lua
@@ -740,7 +740,8 @@ local function do_serialize(root,name,depth,level,indexed)
if accurate then
handle(format("%s %s=%q,",depth,k,v))
else
- handle(format("%s %s=%s,",depth,k,v))
+-- handle(format("%s %s=%s,",depth,k,v))
+ handle(format("%s %s=0x%X,",depth,k,v))
end
elseif accurate then
handle(format("%s %s=%q,",depth,k,v))
@@ -752,7 +753,8 @@ local function do_serialize(root,name,depth,level,indexed)
if accurate then
handle(format("%s [%q]=%q,",depth,k,v))
else
- handle(format("%s [%q]=%s,",depth,k,v))
+-- handle(format("%s [%q]=%s,",depth,k,v))
+ handle(format("%s [%q]=0x%X,",depth,k,v))
end
elseif accurate then
handle(format("%s [%q]=%q,",depth,k,v))