diff options
Diffstat (limited to 'tex/context/base/typo-rep.lua')
-rw-r--r-- | tex/context/base/typo-rep.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tex/context/base/typo-rep.lua b/tex/context/base/typo-rep.lua index c70e90f27..56681974e 100644 --- a/tex/context/base/typo-rep.lua +++ b/tex/context/base/typo-rep.lua @@ -26,10 +26,10 @@ local glyph = node.id("glyph") local attribute = attributes.private("stripping") local fontdata = fonts.ids -nodes.stripping = nodes.stripping or { } -local stripping = nodes.stripping -stripping.glyphs = stripping.glyphs or { } -local glyphs = stripping.glyphs +-- other namespace + +nodes.stripping = nodes.stripping or { } local stripping = nodes.stripping +stripping.glyphs = stripping.glyphs or { } local glyphs = stripping.glyphs local function initialize() for k,v in next, chardata do |