summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/grph-epd.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/grph-epd.lua')
-rw-r--r--tex/context/base/mkiv/grph-epd.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/tex/context/base/mkiv/grph-epd.lua b/tex/context/base/mkiv/grph-epd.lua
index a136108c8..f8fa62953 100644
--- a/tex/context/base/mkiv/grph-epd.lua
+++ b/tex/context/base/mkiv/grph-epd.lua
@@ -16,17 +16,18 @@ local report = logs.reporter("backend","merging")
local function mergegoodies(optionlist)
local options = settings_to_hash(optionlist)
- local all = options[variables.all] or options[variables.yes]
+ local yes = options[variables.yes]
+ local all = options[variables.all]
if next(options) then
report("% t",table.sortedkeys(options))
end
- if all or options[variables.reference] then
+ if all or yes or options[variables.reference] then
codeinjections.mergereferences()
end
if all or options[variables.comment] then
codeinjections.mergecomments()
end
- if all or options[variables.bookmark] then
+ if all or yes or options[variables.bookmark] then
codeinjections.mergebookmarks()
end
if all or options[variables.field] then