summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2012-01-05 19:27:34 +0100
committerHans Hagen <pragma@wxs.nl>2012-01-05 19:27:34 +0100
commite1d36a6e6b05f55536e0c4c125e881c681e18bc1 (patch)
treeabccd55b33c01b8c43752c09fa0fdbfb2b2774a3 /scripts
parentf784af77ded9f791caa3cdb7864d6696de61bca6 (diff)
downloadcontext-e1d36a6e6b05f55536e0c4c125e881c681e18bc1.tar.gz
beta 2011.11.25 13:29
Diffstat (limited to 'scripts')
-rw-r--r--scripts/context/lua/mtxrun.lua4
-rw-r--r--scripts/context/stubs/mswin/mtxrun.lua4
-rwxr-xr-xscripts/context/stubs/unix/mtxrun4
3 files changed, 6 insertions, 6 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
diff --git a/scripts/context/stubs/mswin/mtxrun.lua b/scripts/context/stubs/mswin/mtxrun.lua
index 261c00efd..92e438188 100644
--- a/scripts/context/stubs/mswin/mtxrun.lua
+++ b/scripts/context/stubs/mswin/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
diff --git a/scripts/context/stubs/unix/mtxrun b/scripts/context/stubs/unix/mtxrun
index 261c00efd..92e438188 100755
--- a/scripts/context/stubs/unix/mtxrun
+++ b/scripts/context/stubs/unix/mtxrun
@@ -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