aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-02 03:41:16 +1000
committerDavid Walter Seikel2012-02-02 03:41:16 +1000
commite8c4953719a057bec2c1344633cf88c480948e40 (patch)
tree00a9cb075906708b7f97abc98518c686ff9ef893 /LuaSL/src/LuaSL_LSL_tree.h
parentNumby magic. (diff)
downloadSledjHamr-e8c4953719a057bec2c1344633cf88c480948e40.zip
SledjHamr-e8c4953719a057bec2c1344633cf88c480948e40.tar.gz
SledjHamr-e8c4953719a057bec2c1344633cf88c480948e40.tar.bz2
SledjHamr-e8c4953719a057bec2c1344633cf88c480948e40.tar.xz
Fix up crements ignorables.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 64832d2..8be8afd 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -224,7 +224,8 @@ struct _LSL_Parenthesis
224struct _LSL_Identifier // For variables and function parameters. 224struct _LSL_Identifier // For variables and function parameters.
225{ 225{
226 LSL_Text name; 226 LSL_Text name;
227 const char *sub; 227 Eina_Strbuf *ignorable;
228 const char *sub;
228 LSL_Leaf value; 229 LSL_Leaf value;
229}; 230};
230 231