summaryrefslogtreecommitdiff
path: root/src/parse/language.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-10-06 18:32:37 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-10-06 18:32:37 +0000
commite0f1048bbeb7dfff28d32edba4a7944a411f6299 (patch)
tree87c15ca795091b136d4cfff95e59e76708bd5ef5 /src/parse/language.h
parentab11c1079c02672f61eb01783c2fd7363550c291 (diff)
downloadlibcss-e0f1048bbeb7dfff28d32edba4a7944a411f6299.tar.gz
libcss-e0f1048bbeb7dfff28d32edba4a7944a411f6299.tar.bz2
Avoid interning propstrings table for every stylesheet, style tag and style attribute.
svn path=/trunk/libcss/; revision=12972
Diffstat (limited to 'src/parse/language.h')
-rw-r--r--src/parse/language.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/language.h b/src/parse/language.h
index 0f1985c..522e981 100644
--- a/src/parse/language.h
+++ b/src/parse/language.h
@@ -44,7 +44,7 @@ typedef struct css_language {
/** \todo These should be statically allocated */
/** Interned strings */
- lwc_string *strings[LAST_KNOWN];
+ lwc_string **strings;
lwc_string *default_namespace; /**< Default namespace URI */
css_namespace *namespaces; /**< Array of namespace mappings */