aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.c
diff options
context:
space:
mode:
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.