summaryrefslogtreecommitdiff
path: root/src/parse/parse.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-15 16:28:30 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-15 16:28:30 +0000
commitf3871ddf33d016499a7dac7613e9acbc0ca47eb2 (patch)
treebc51de5369e2b7d61d9c97903b8c6fa5c2e3a081 /src/parse/parse.h
parent7ab2ca6642902f0e3ca095420eaf6a97e5b639ed (diff)
downloadlibcss-f3871ddf33d016499a7dac7613e9acbc0ca47eb2.tar.gz
libcss-f3871ddf33d016499a7dac7613e9acbc0ca47eb2.tar.bz2
A bunch of c89.
Lose trailing commas. GCC 2.95 compatibility. svn path=/trunk/libcss/; revision=7099
Diffstat (limited to 'src/parse/parse.h')
-rw-r--r--src/parse/parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/parse.h b/src/parse/parse.h
index 3a460e6..c590858 100644
--- a/src/parse/parse.h
+++ b/src/parse/parse.h
@@ -31,7 +31,7 @@ typedef enum css_parser_event {
CSS_PARSER_START_BLOCK,
CSS_PARSER_END_BLOCK,
CSS_PARSER_BLOCK_CONTENT,
- CSS_PARSER_DECLARATION,
+ CSS_PARSER_DECLARATION
} css_parser_event;
typedef css_error (*css_parser_event_handler)(css_parser_event type,
@@ -42,7 +42,7 @@ typedef css_error (*css_parser_event_handler)(css_parser_event type,
*/
typedef enum css_parser_opttype {
CSS_PARSER_QUIRKS,
- CSS_PARSER_EVENT_HANDLER,
+ CSS_PARSER_EVENT_HANDLER
} css_parser_opttype;
/**