summaryrefslogtreecommitdiff
path: root/tex/context/base/lxml-tab.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2009-06-11 00:07:00 +0200
committerHans Hagen <pragma@wxs.nl>2009-06-11 00:07:00 +0200
commitac1327ec126b4416f897cd140fee6ea636094feb (patch)
tree7695437bb33c2e22a8dabc5c003c943fec5af7a5 /tex/context/base/lxml-tab.lua
parent1f8c4726d3da14ebb6071bdba5888ebe763329d0 (diff)
downloadcontext-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.lua2
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