summaryrefslogtreecommitdiff
path: root/tex/context/base/attr-col.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2012-01-05 19:27:17 +0100
committerHans Hagen <pragma@wxs.nl>2012-01-05 19:27:17 +0100
commit94124bc6ebef1359c1994f9ec64ac5161d2db276 (patch)
tree7194dbd5b321beba4d4addd426ecd97d304390db /tex/context/base/attr-col.lua
parent9fb6251be7393901502aa2039dfdc7057a2e5aa7 (diff)
downloadcontext-94124bc6ebef1359c1994f9ec64ac5161d2db276.tar.gz
beta 2011.11.02 20:10
Diffstat (limited to 'tex/context/base/attr-col.lua')
-rw-r--r--tex/context/base/attr-col.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/tex/context/base/attr-col.lua b/tex/context/base/attr-col.lua
index 871ac3e03..6683e9a2d 100644
--- a/tex/context/base/attr-col.lua
+++ b/tex/context/base/attr-col.lua
@@ -9,6 +9,9 @@ if not modules then modules = { } end modules ['attr-col'] = {
-- this module is being reconstructed and code will move to other places
-- we can also do the nsnone via a metatable and then also se index 0
+-- list could as well refer to the tables (instead of numbers that
+-- index into another table) .. depends on what we need
+
local type = type
local format = string.format
local concat = table.concat
@@ -349,13 +352,15 @@ end
-- transparencies
+local a_transparency = attributes.private('transparency')
+
attributes.transparencies = attributes.transparencies or { }
local transparencies = attributes.transparencies
transparencies.registered = transparencies.registered or { }
transparencies.data = allocate()
transparencies.values = transparencies.values or { }
transparencies.triggering = true
-transparencies.attribute = attributes.private('transparency')
+transparencies.attribute = a_transparency
transparencies.supported = true
storage.register("attributes/transparencies/registered", transparencies.registered, "attributes.transparencies.registered")
@@ -393,6 +398,9 @@ function transparencies.register(name,a,t,force) -- name is irrelevant here (can
elseif force and not data[n] then
register_transparency(n,a,t)
end
+ if name then
+ list[a_transparency][name] = n -- not grouped, so only global transparencies
+ end
return registered[stamp]
end