diff options
author | Hans Hagen <pragma@wxs.nl> | 2009-06-11 00:07:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2009-06-11 00:07:00 +0200 |
commit | ac1327ec126b4416f897cd140fee6ea636094feb (patch) | |
tree | 7695437bb33c2e22a8dabc5c003c943fec5af7a5 /tex/context/base/lxml-tab.lua | |
parent | 1f8c4726d3da14ebb6071bdba5888ebe763329d0 (diff) | |
download | context-ac1327ec126b4416f897cd140fee6ea636094feb.tar.gz |
beta 2009.06.11 00:07
Diffstat (limited to 'tex/context/base/lxml-tab.lua')
-rw-r--r-- | tex/context/base/lxml-tab.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tex/context/base/lxml-tab.lua b/tex/context/base/lxml-tab.lua index a35e64270..6ceadb678 100644 --- a/tex/context/base/lxml-tab.lua +++ b/tex/context/base/lxml-tab.lua @@ -668,7 +668,7 @@ function xml.tostring(root) -- 25% overhead due to collecting return root elseif next(root) then -- next is faster than type (and >0 test) local result = { } - serialize(root,function(s) result[#result+1] = s end) + serialize(root,function(s) result[#result+1] = s end) -- brrr, slow (direct printing is faster) return concat(result,"") end end |