From 7d11de5da22b343716734be3be1810cb3163a696 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 1 Dec 2008 14:17:34 +0000 Subject: Retain pointer to dictionary entries so we don't have to rediscover it later. svn path=/trunk/libcss/; revision=5862 --- src/lex/lex.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lex/lex.h') diff --git a/src/lex/lex.h b/src/lex/lex.h index feb589e..81a7355 100644 --- a/src/lex/lex.h +++ b/src/lex/lex.h @@ -13,6 +13,7 @@ #include #include +#include typedef struct css_lexer css_lexer; @@ -60,8 +61,9 @@ typedef struct css_token { css_string data; - css_string lower; - + const parserutils_hash_entry *idata; + const parserutils_hash_entry *ilower; + uint32_t col; uint32_t line; } css_token; -- cgit v1.2.3