summaryrefslogtreecommitdiff
path: root/tex/context/base/node-res.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/node-res.lua')
-rw-r--r--tex/context/base/node-res.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/tex/context/base/node-res.lua b/tex/context/base/node-res.lua
index f68e89954..5b2b32a51 100644
--- a/tex/context/base/node-res.lua
+++ b/tex/context/base/node-res.lua
@@ -230,7 +230,8 @@ function pool.rule(width,height,depth,dir)
if width then n.width = width end
if height then n.height = height end
if depth then n.depth = depth end
- if dir then n.dir = dir end
+-- if dir then n.dir = dir end
+ n.dir = dir or "TLT" -- bug in luatex
return n
end