aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_lexer.l
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-10 03:30:17 +1000
committerDavid Walter Seikel2012-01-10 03:30:17 +1000
commiteb8dda3811a849ef633faa225cf1427bf93a4494 (patch)
treee360394cc64c99ca94238c2442bd0cf7b29617d1 /LuaSL/src/LuaSL_lexer.l
parentMove more things into the LSL_Leaf structure, and some clean up related to that. (diff)
downloadSledjHamr-eb8dda3811a849ef633faa225cf1427bf93a4494.zip
SledjHamr-eb8dda3811a849ef633faa225cf1427bf93a4494.tar.gz
SledjHamr-eb8dda3811a849ef633faa225cf1427bf93a4494.tar.bz2
SledjHamr-eb8dda3811a849ef633faa225cf1427bf93a4494.tar.xz
Get rid of the LSL_AST structure, it's all in LSL_Leaf now.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_lexer.l1
1 files changed, 0 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_lexer.l b/LuaSL/src/LuaSL_lexer.l
index 30e0b6b..aaba74a 100644
--- a/LuaSL/src/LuaSL_lexer.l
+++ b/LuaSL/src/LuaSL_lexer.l
@@ -140,7 +140,6 @@ int common(YYSTYPE *lval, char *text, boolean checkIgnorable, int type)
140 else 140 else
141 column++; 141 column++;
142 142
143 lval->type = type;
144 lval->token = tokens[type - lowestToken]; 143 lval->token = tokens[type - lowestToken];
145 lval->line = line; 144 lval->line = line;
146 lval->column = column; 145 lval->column = column;