summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElie Roux <elie.roux@telecom-bretagne.eu>2013-05-04 05:36:49 -0700
committerElie Roux <elie.roux@telecom-bretagne.eu>2013-05-04 05:36:49 -0700
commite379d438d1903a0dbc1fab0fd82bf9e520c4b27a (patch)
treeb6ef6c9195c580bcf24205cb54138578f092e697
parent00e3aee4a50dc9d042bf792556b727761f20ae02 (diff)
parent94fd32b7dd09f9c3caca57a24ca7519be66b012e (diff)
downloadluatexbase-e379d438d1903a0dbc1fab0fd82bf9e520c4b27a.tar.gz
Merge pull request #6 from phi-gamma/master
incorporate suggestions by Stephan
-rw-r--r--luatexbase-attr.dtx45
1 files changed, 32 insertions, 13 deletions
diff --git a/luatexbase-attr.dtx b/luatexbase-attr.dtx
index 60ca026..aa5e987 100644
--- a/luatexbase-attr.dtx
+++ b/luatexbase-attr.dtx
@@ -345,7 +345,8 @@ See the aforementioned source file(s) for copyright and licensing information.
% \begin{macrocode}
%<*luamodule>
--- locals
-local nodenew = node.new
+local copynode = node.copy
+local newnode = node.new
local nodesubtype = node.subtype
local nodetype = node.id
local stringfind = string.find
@@ -525,19 +526,21 @@ end
luatexbase.new_user_whatsit_id = new_user_whatsit_id
% \end{macrocode}
%
-% \verb|new_user_whatsit| first registers a new id and
-% then also creates the corresponding whatsit of subtype “user defined”.
-% Return values are said node and its id.
+% \verb|new_user_whatsit| first registers a new id and then also
+% creates the corresponding whatsit of subtype “user defined”.
+% We return a nullary function that delivers copies of the whatsit.
%
% \begin{macrocode}
---- string -> string -> (node_t -> int)
+--- string -> string -> (unit -> node_t, int)
local new_user_whatsit = function (name, package)
- local id = new_user_whatsit_id(name, package)
- local wi = nodenew(whatsit_t, user_defined_t)
- wi.user_id = id
- return wi, id
+ local id = new_user_whatsit_id(name, package)
+ local whatsit = newnode(whatsit_t, user_defined_t)
+ whatsit.user_id = id
+ --- unit -> node_t
+ return function ( ) return copynode(whatsit) end, id
end
-luatexbase.new_user_whatsit = new_user_whatsit
+luatexbase.new_user_whatsit = new_user_whatsit
+luatexbase.new_user_whatsit_factory = new_user_whatsit --- for Stephan
% \end{macrocode}
%
% If one knows the name of a whatsit, its corresponding id
@@ -564,11 +567,15 @@ luatexbase.get_user_whatsit_id = get_user_whatsit_id
% unregistered.
%
% \begin{macrocode}
---- int | node -> (string, string)
+--- int | fun | node -> (string, string)
local get_user_whatsit_name = function (asked)
local id
if type(asked) == "number" then
id = asked
+ elseif type(asked) == "function" then
+ --- node generator
+ local n = asked()
+ id = n.user_id
else --- node
id = asked.user_id
end
@@ -613,9 +620,20 @@ local dump_registered_whatsits = function (asked_package)
end
end
end
+
texiowrite_nl" ("
- texiowrite(table.concat(whatsit_list, "\n "))
- texiowrite"))"
+ --- in an attempt to be clever the texio.write* functions
+ --- mess up line breaking, so concatenation is unusable ...
+ local first = true
+ for i=1, #whatsit_list do
+ if first then
+ first = false
+ else -- indent
+ texiowrite_nl" "
+ end
+ texiowrite(whatsit_list[i])
+ end
+ texiowrite"))\n"
end
luatexbase.dump_registered_whatsits = dump_registered_whatsits
% \end{macrocode}
@@ -623,6 +641,7 @@ luatexbase.dump_registered_whatsits = dump_registered_whatsits
% \begin{macrocode}
luatexbase.newattribute = new_attribute
luatexbase.newuserwhatsit = new_user_whatsit
+luatexbase.newuserwhatsitfactory = new_user_whatsit_factory
luatexbase.newuserwhatsitid = new_user_whatsit_id
luatexbase.getuserwhatsitid = get_user_whatsit_id
luatexbase.getuserwhatsitname = get_user_whatsit_name