summaryrefslogtreecommitdiff
path: root/scripts/context/lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2011-11-25 15:00:16 +0200
committerMarius <mariausol@gmail.com>2011-11-25 15:00:16 +0200
commitcb51203b1c95abfcde154919683561a27a28a7e5 (patch)
treeda2f5ceff219bfc6f46cf4345c3ddb1ecbadbaa7 /scripts/context/lua
parent3c93a961f9579bc10a8a6cb0d30065d9791048a3 (diff)
downloadcontext-cb51203b1c95abfcde154919683561a27a28a7e5.tar.gz
beta 2011.11.25 13:29
Diffstat (limited to 'scripts/context/lua')
-rw-r--r--scripts/context/lua/mtxrun.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/context/lua/mtxrun.lua b/scripts/context/lua/mtxrun.lua
index 261c00efd..92e438188 100644
--- a/scripts/context/lua/mtxrun.lua
+++ b/scripts/context/lua/mtxrun.lua
@@ -10204,9 +10204,9 @@ end
--
local function text(collected) -- hybrid
- if collected and #collected > 0 then
+ if collected then -- no # test here !
local e = collected[1] or collected
- return (e and xmltotext(e)) or ""
+ return e and xmltotext(e) or ""
else
return ""
end