diff options
author | John Mark Bell <jmb@netsurf-browser.org> | 2008-10-22 22:27:32 +0000 |
---|---|---|
committer | John Mark Bell <jmb@netsurf-browser.org> | 2008-10-22 22:27:32 +0000 |
commit | 5d9507591d83b48be8c76421b602500c196e3785 (patch) | |
tree | 8a67a1d5730147e8dd41f6b64b5204945a8a464f | |
parent | 6dbfc2658ce9fcbd808783211933c23f97d64dfb (diff) | |
download | libcss-5d9507591d83b48be8c76421b602500c196e3785.tar.gz |
Actually include the opcodes header.
Fix typos.
svn path=/trunk/libcss/; revision=5624
-rw-r--r-- | src/bytecode/opcodes.h | 4 | ||||
-rw-r--r-- | src/parse/css21props.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/bytecode/opcodes.h b/src/bytecode/opcodes.h index 4e0da7b..a6a477b 100644 --- a/src/bytecode/opcodes.h +++ b/src/bytecode/opcodes.h @@ -51,7 +51,7 @@ enum op_background_image { }; enum op_background_position { - BACKGROUND_POSITION_HORZ_SET = 0x0080 + BACKGROUND_POSITION_HORZ_SET = 0x0080, BACKGROUND_POSITION_HORZ_RIGHT = 0x0000, BACKGROUND_POSITION_HORZ_CENTER = 0x0010, BACKGROUND_POSITION_HORZ_LEFT = 0x0020, @@ -406,7 +406,7 @@ enum op_page_break_after { PAGE_BREAK_AFTER_AVOID = 0x0002, PAGE_BREAK_AFTER_LEFT = 0x0003, PAGE_BREAK_AFTER_RIGHT = 0x0004, -} +}; enum op_page_break_before { PAGE_BREAK_BEFORE_AUTO = 0x0000, diff --git a/src/parse/css21props.c b/src/parse/css21props.c index 13a1b4b..24c9ba1 100644 --- a/src/parse/css21props.c +++ b/src/parse/css21props.c @@ -9,6 +9,7 @@ #define css_parse_css21props_c_ #include "bytecode/bytecode.h" +#include "bytecode/opcodes.h" static css_error parse_azimuth(css_css21 *c, const parserutils_vector *vector, int *ctx, |