aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-14 08:45:48 +1000
committerDavid Walter Seikel2012-01-14 08:45:48 +1000
commitf8e387dde17e1e64ae83b9162d5042a80e0c82aa (patch)
tree497386849a3872b2505b91b9d7e567ff53e19083 /LuaSL/src/LuaSL_LSL_tree.c
parentGeneric type handling, and add the float type. (diff)
downloadSledjHamr-f8e387dde17e1e64ae83b9162d5042a80e0c82aa.zip
SledjHamr-f8e387dde17e1e64ae83b9162d5042a80e0c82aa.tar.gz
SledjHamr-f8e387dde17e1e64ae83b9162d5042a80e0c82aa.tar.bz2
SledjHamr-f8e387dde17e1e64ae83b9162d5042a80e0c82aa.tar.xz
Little bit of clean up.
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.c')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.c b/LuaSL/src/LuaSL_LSL_tree.c
index 5c97719..98a03e7 100644
--- a/LuaSL/src/LuaSL_LSL_tree.c
+++ b/LuaSL/src/LuaSL_LSL_tree.c
@@ -22,7 +22,7 @@ LSL_Token LSL_Tokens[] =
22 {LSL_SPACE, ST_NONE, " ", LSL_NONE, NULL, NULL, NULL}, 22 {LSL_SPACE, ST_NONE, " ", LSL_NONE, NULL, NULL, NULL},
23 23
24 // Operators, in order of precedence, low to high 24 // Operators, in order of precedence, low to high
25 // Left to right, unless oterwise stated. 25 // Left to right, unless otherwise stated.
26 // According to http://wiki.secondlife.com/wiki/Category:LSL_Operators 26 // According to http://wiki.secondlife.com/wiki/Category:LSL_Operators
27 {LSL_BOOL_AND, ST_BOOLEAN, "&&", LSL_RIGHT2LEFT, NULL, NULL, evaluateOperationToken}, 27 {LSL_BOOL_AND, ST_BOOLEAN, "&&", LSL_RIGHT2LEFT, NULL, NULL, evaluateOperationToken},
28// QUIRK - Seems to be some disagreement about BOOL_AND/BOOL_OR precedence. Either they are equal, or OR is higher. 28// QUIRK - Seems to be some disagreement about BOOL_AND/BOOL_OR precedence. Either they are equal, or OR is higher.