summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-05-24 21:21:45 +0000
committerKarl Berry <karl@freefriends.org>2019-05-24 21:21:45 +0000
commit437cb829fc15a8874bb17cb344dc554518daafc2 (patch)
tree632fc70ebed244e4a7746dd70fad2df6de08d14c /Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
parent69e636169cd6533e5aacbe16b2edaeb9e3d8f7e5 (diff)
make4ht (24may19)
git-svn-id: svn://tug.org/texlive/trunk@51215 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua')
-rwxr-xr-xMaster/texmf-dist/scripts/make4ht/make4ht-dvireader.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua b/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
index f5988ee96c4..6355650ef43 100755
--- a/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
+++ b/Master/texmf-dist/scripts/make4ht/make4ht-dvireader.lua
@@ -103,7 +103,7 @@ local function read_opcode(opcode, str, pos)
if not format then return nil, "Cannot find opcode format: " .. opcode end
-- check that opcode byte in the current position is the same as required opcode
local op = read_byte(str, pos)
- if op ~= format.opcode then return nil, "Wrong opcode " .. op " at position " .. pos end
+ if op ~= format.opcode then return nil, "Wrong opcode " .. op .. " at position " .. pos end
return read_arguments(str, pos+1, format.args)
end