summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-04-21 22:51:43 +0000
committerKarl Berry <karl@freefriends.org>2017-04-21 22:51:43 +0000
commitfa26d76abf0733c5756188d6072517451dd63923 (patch)
tree7f426bb19e6c27cd4d92c4fc754f3e52c902dcb9 /Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
parent1a91a5e1080f020606e6f240ad58be1ece507315 (diff)
context (Apr 20 22:20)
git-svn-id: svn://tug.org/texlive/trunk@43966 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua')
-rw-r--r--Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua b/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
index 2cb0c1eb7fb..c1ab2e592f5 100644
--- a/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
+++ b/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
@@ -141,10 +141,10 @@ local function initializecolr(tfmdata,kind,value) -- hm, always value
-- are somewhat inefficient as each glyph gets the font set. It's a
-- side effect of the fact that a font is handled when a character gets
-- flushed.
- -- { "special", "pdf:page:q" },
- -- { "special", "pdf:raw:" .. b }
- -- This seems to be okay too:
- { "special", "pdf:direct:q " .. b },
+ { "special", "pdf:page:q" },
+ { "special", "pdf:raw:" .. b }
+ -- This is not ok:
+ -- { "special", "pdf:direct:q " .. b },
}
local n = #t
for i=1,s do
@@ -155,10 +155,10 @@ local function initializecolr(tfmdata,kind,value) -- hm, always value
n = n + 1 t[n] = { "right", -w }
end
end
- -- n = n + 1 t[n] = { "special", "pdf:page:" .. e }
- -- n = n + 1 t[n] = { "special", "pdf:raw:Q" }
- -- This seems to be okay too:
- n = n + 1 t[n] = { "special", "pdf:direct:" .. e .. " Q"}
+ n = n + 1 t[n] = { "special", "pdf:page:" .. e }
+ n = n + 1 t[n] = { "special", "pdf:raw:Q" }
+ -- This is not ok:
+ -- n = n + 1 t[n] = { "special", "pdf:direct:" .. e .. " Q"}
character.commands = t
end
end