summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-05-04 01:25:40 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-05-04 01:25:40 +0200
commit94fd32b7dd09f9c3caca57a24ca7519be66b012e (patch)
treeb6ef6c9195c580bcf24205cb54138578f092e697
parentf7103fd0390b98c9ad4e74d8624376ee5b402a2b (diff)
downloadluatexbase-94fd32b7dd09f9c3caca57a24ca7519be66b012e.tar.gz
fix ``get_user_whatsit_name``
-rw-r--r--luatexbase-attr.dtx2
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