summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/context/base/mkiv/font-ocl.lua
diff options
context:
space:
mode:
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