diff options
Diffstat (limited to 'tex/context/base/node-rul.lua')
-rw-r--r-- | tex/context/base/node-rul.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tex/context/base/node-rul.lua b/tex/context/base/node-rul.lua index bac042353..09300964e 100644 --- a/tex/context/base/node-rul.lua +++ b/tex/context/base/node-rul.lua @@ -43,12 +43,12 @@ function nodes.striprange(first,last) -- todo: dir if id == glyph_code or id == disc_code then -- or id == rule_code break else -local prev = last.prev -- luatex < 0.70 has italic correction kern not prev'd -if prev then - last = last.prev -else - break -end + local prev = last.prev -- luatex < 0.70 has italic correction kern not prev'd + if prev then + last = last.prev + else + break + end end end if not last then |