summaryrefslogtreecommitdiff
path: root/tex/context/base/node-tsk.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/node-tsk.lua')
-rw-r--r--tex/context/base/node-tsk.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/node-tsk.lua b/tex/context/base/node-tsk.lua
index 553f0fc3b..9accfc6d7 100644
--- a/tex/context/base/node-tsk.lua
+++ b/tex/context/base/node-tsk.lua
@@ -218,8 +218,9 @@ function tasks.table(name) --maybe move this to task-deb.lua
local list, order = lst.list, lst.order
if list and order then
context.starttabulate { "|l|l|" }
- HL() NC() bold("category") NC() bold("function") NC() NR() HL()
+ NC() bold("category") NC() bold("function") NC() NR()
for i=1,#order do
+ HL()
local o = order[i]
local l = list[o]
if #l == 0 then
@@ -229,7 +230,6 @@ function tasks.table(name) --maybe move this to task-deb.lua
NC() type(o) NC() type(v) NC() NR()
end
end
- HL()
end
context.stoptabulate()
end