summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/supp-box.lmt
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/supp-box.lmt')
-rw-r--r--tex/context/base/mkiv/supp-box.lmt30
1 files changed, 13 insertions, 17 deletions
diff --git a/tex/context/base/mkiv/supp-box.lmt b/tex/context/base/mkiv/supp-box.lmt
index 96e0330e5..98bf828b5 100644
--- a/tex/context/base/mkiv/supp-box.lmt
+++ b/tex/context/base/mkiv/supp-box.lmt
@@ -855,8 +855,7 @@ implement {
implement {
name = "widthuptohere",
public = true,
- protected = true,
- value = true,
+ usage = "value",
actions = function()
local n = texgetnest()
local w = 0
@@ -1195,30 +1194,27 @@ do
local function define_one(name,action)
implement {
- name = name,
- public = true,
- -- protected = true,
- value = true,
- actions = function(what) return boxline(action,what) end,
+ name = name,
+ public = true,
+ usage = "value",
+ actions = function(what) return boxline(action,what) end,
}
end
local function define_two(name,action)
implement {
- name = name,
- public = true,
- -- protected = true,
- value = true,
- actions = function(what) return boxrange(action,what) end,
+ name = name,
+ public = true,
+ usage = "value",
+ actions = function(what) return boxrange(action,what) end,
}
end
implement {
- name = "boxlines",
- public = true,
- -- protected = true,
- value = true,
- actions = boxlinecount,
+ name = "boxlines",
+ public = true,
+ usage = "value",
+ actions = boxlinecount,
}
define_one("boxline", "get")