diff options
author | Marius <mariausol@gmail.com> | 2010-09-22 11:03:47 +0300 |
---|---|---|
committer | Marius <mariausol@gmail.com> | 2010-09-22 11:03:47 +0300 |
commit | 9d17a4bc572f48289b6d188684a7bbf8c46839fe (patch) | |
tree | b80a082a5d00cd7ee84a8c51c6a5b13d574f2447 /scripts/context/stubs/mswin/mtxrun.lua | |
parent | f986a332f76934300807a66702e402cc57c4b776 (diff) | |
download | context-9d17a4bc572f48289b6d188684a7bbf8c46839fe.tar.gz |
beta 2010.09.22 09:35
Diffstat (limited to 'scripts/context/stubs/mswin/mtxrun.lua')
-rw-r--r-- | scripts/context/stubs/mswin/mtxrun.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/context/stubs/mswin/mtxrun.lua b/scripts/context/stubs/mswin/mtxrun.lua index b175a35a4..622643f9c 100644 --- a/scripts/context/stubs/mswin/mtxrun.lua +++ b/scripts/context/stubs/mswin/mtxrun.lua @@ -615,7 +615,7 @@ local function sortedkeys(tab) elseif tkey == "number" then -- if kind == 1 then kind = 3 else kind = 2 end kind = (kind == 1 and 3) or 2 - else + else -- if tkey then kind = 3 end end @@ -631,7 +631,9 @@ end local function sortedhashkeys(tab) -- fast one local srt = { } for key,_ in next, tab do - srt[#srt+1] = key + if key then + srt[#srt+1] = key + end end sort(srt) return srt |