summaryrefslogtreecommitdiff
path: root/src/select/select.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-11-07 14:04:49 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-11-07 14:04:49 +0000
commitfe2f0b4b8fd7fa1d44ca3652b910490a501444bb (patch)
tree9f6c222cd2d616b63bc9d4de17e0cdd31b482885 /src/select/select.h
parentcf6e0da0048a86e9e446d49914b014089ef63878 (diff)
downloadlibcss-fe2f0b4b8fd7fa1d44ca3652b910490a501444bb.tar.gz
libcss-fe2f0b4b8fd7fa1d44ca3652b910490a501444bb.tar.bz2
Fill reject cache backwards from end.
svn path=/trunk/libcss/; revision=13133
Diffstat (limited to 'src/select/select.h')
-rw-r--r--src/select/select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select/select.h b/src/select/select.h
index 36e2eda..ee8e42a 100644
--- a/src/select/select.h
+++ b/src/select/select.h
@@ -55,7 +55,7 @@ typedef struct css_select_state {
lwc_string **classes; /* Node classes, if any */
uint32_t n_classes; /* Number of classes */
- reject_item reject_cache[128]; /* Reject cache */
+ reject_item reject_cache[128]; /* Reject cache (filled from end) */
reject_item *next_reject; /* Next free slot in reject cache */
prop_state props[CSS_N_PROPERTIES][CSS_PSEUDO_ELEMENT_COUNT];