aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-23 03:32:45 +1000
committerDavid Walter Seikel2012-02-23 03:32:45 +1000
commit937767ac4071fdaa789e773f24a21f3aba725b71 (patch)
tree950b63bdebebbdce888012500f1b9a406d8d80ee /LuaSL
parentWhite space++. (diff)
downloadSledjHamr-937767ac4071fdaa789e773f24a21f3aba725b71.zip
SledjHamr-937767ac4071fdaa789e773f24a21f3aba725b71.tar.gz
SledjHamr-937767ac4071fdaa789e773f24a21f3aba725b71.tar.bz2
SledjHamr-937767ac4071fdaa789e773f24a21f3aba725b71.tar.xz
More white space, and comment out some implemented functions.
Diffstat (limited to 'LuaSL')
-rw-r--r--LuaSL/src/LSL.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua
index 826cbe3..15ac38f 100644
--- a/LuaSL/src/LSL.lua
+++ b/LuaSL/src/LSL.lua
@@ -447,7 +447,7 @@ function --[[integer]] LSL.llGetInventoryType(--[[string]] name) return LSL.INV
447 447
448-- LSL list functions. 448-- LSL list functions.
449 449
450function --[[list]] LSL.llCSV2List(--[[string]] text) return {} end; 450--function --[[list]] LSL.llCSV2List(--[[string]] text) return {} end;
451function --[[list]] LSL.llDeleteSubList(--[[list]] l,--[[integer]] start,--[[integer]] eNd) 451function --[[list]] LSL.llDeleteSubList(--[[list]] l,--[[integer]] start,--[[integer]] eNd)
452 local result = {} 452 local result = {}
453 local x = 1 453 local x = 1
@@ -538,7 +538,7 @@ function --[[vector]] LSL.llList2Vector(--[[list]] l,--[[integer]] index)
538 return result 538 return result
539end 539end
540 540
541function --[[integer]] LSL.llListFindList(--[[list]] l, --[[list]] l1) return 0 end; 541--function --[[integer]] LSL.llListFindList(--[[list]] l, --[[list]] l1) return 0 end;
542function --[[list]] LSL.llListInsertList(--[[list]] l, --[[list]] l1,--[[integer]] index) 542function --[[list]] LSL.llListInsertList(--[[list]] l, --[[list]] l1,--[[integer]] index)
543 local result = {} 543 local result = {}
544 local x = 1 544 local x = 1
@@ -590,8 +590,8 @@ function --[[list]] LSL.llListSort(--[[list]] l,--[[integer]] stride,--[[integer
590 return result 590 return result
591end 591end
592 592
593function --[[list]] LSL.llParseString2List(--[[string]] In, --[[list]] l, --[[list]] l1) return {} end; 593--function --[[list]] LSL.llParseString2List(--[[string]] In, --[[list]] l, --[[list]] l1) return {} end;
594function --[[list]] LSL.llParseStringKeepNulls(--[[string]] In, --[[list]] l, --[[list]] l1) return {} end; 594--function --[[list]] LSL.llParseStringKeepNulls(--[[string]] In, --[[list]] l, --[[list]] l1) return {} end;
595 595
596 596
597-- LSL script functions 597-- LSL script functions
@@ -602,6 +602,7 @@ end
602 602
603 603
604-- LSL string functions 604-- LSL string functions
605
605function --[[string]] LSL.llGetSubString(--[[string]] text, --[[integer]] start, --[[integer]] End) 606function --[[string]] LSL.llGetSubString(--[[string]] text, --[[integer]] start, --[[integer]] End)
606 -- Deal with the impedance mismatch. 607 -- Deal with the impedance mismatch.
607 if 0 <= start then start = start + 1 end 608 if 0 <= start then start = start + 1 end