diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-04 01:25:40 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-04 01:25:40 +0200 |
commit | 94fd32b7dd09f9c3caca57a24ca7519be66b012e (patch) | |
tree | b6ef6c9195c580bcf24205cb54138578f092e697 | |
parent | f7103fd0390b98c9ad4e74d8624376ee5b402a2b (diff) | |
download | luatexbase-94fd32b7dd09f9c3caca57a24ca7519be66b012e.tar.gz |
fix ``get_user_whatsit_name``
-rw-r--r-- | luatexbase-attr.dtx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luatexbase-attr.dtx b/luatexbase-attr.dtx index faa0261..aa5e987 100644 --- a/luatexbase-attr.dtx +++ b/luatexbase-attr.dtx @@ -575,7 +575,7 @@ local get_user_whatsit_name = function (asked) elseif type(asked) == "function" then --- node generator local n = asked() - id = n.id + id = n.user_id else --- node id = asked.user_id end |