summaryrefslogtreecommitdiff
path: root/src/lex/lex.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-12-01 14:17:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-12-01 14:17:34 +0000
commit7d11de5da22b343716734be3be1810cb3163a696 (patch)
treeb7e092c889747cde6ffcd1eaad488c6ed10670c7 /src/lex/lex.c
parent9e8f4efc94c896b4df2110272f42d2c93e1512d4 (diff)
downloadlibcss-7d11de5da22b343716734be3be1810cb3163a696.tar.gz
libcss-7d11de5da22b343716734be3be1810cb3163a696.tar.bz2
Retain pointer to dictionary entries so we don't have to rediscover it later.
svn path=/trunk/libcss/; revision=5862
Diffstat (limited to 'src/lex/lex.c')
-rw-r--r--src/lex/lex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lex/lex.c b/src/lex/lex.c
index a649304..86e669e 100644
--- a/src/lex/lex.c
+++ b/src/lex/lex.c
@@ -1168,8 +1168,8 @@ start:
t->type = CSS_TOKEN_EOF;
t->data.data = NULL;
t->data.len = 0;
- t->lower.data = NULL;
- t->lower.len = 0;
+ t->idata = NULL;
+ t->ilower = NULL;
t->col = lexer->currentCol;
t->line = lexer->currentLine;
lexer->escapeSeen = false;