summaryrefslogtreecommitdiff
path: root/src/parse/language.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
commit33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 (patch)
treefeb641941e4fbd0db11bf70415fee5e3be50a08a /src/parse/language.c
parenta8537a5405583a4c975b56d95cab8bdd5d406e9f (diff)
downloadlibcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.gz
libcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.bz2
Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar
svn path=/trunk/libcss/; revision=11416
Diffstat (limited to 'src/parse/language.c')
-rw-r--r--src/parse/language.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/language.c b/src/parse/language.c
index f8df2f1..ca21996 100644
--- a/src/parse/language.c
+++ b/src/parse/language.c
@@ -1288,7 +1288,7 @@ css_error parseProperty(css_language *c, const css_token *property,
}
/* Determine if this declaration is important or not */
- error = parse_important(c, vector, ctx, &flags);
+ error = css__parse_important(c, vector, ctx, &flags);
if (error != CSS_OK) {
css_stylesheet_style_destroy(style);
return error;
@@ -1305,7 +1305,7 @@ css_error parseProperty(css_language *c, const css_token *property,
/* If it's important, then mark the style appropriately */
if (flags != 0)
- make_style_important(style);
+ css__make_style_important(style);
/* Append style to rule */
error = css_stylesheet_rule_append_style(c->sheet, rule, style);