summaryrefslogtreecommitdiff
path: root/src/parse/language.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-26 22:45:28 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-26 22:45:28 +0000
commit2d1f0630c050c409285515bc7761c366615fc0fc (patch)
tree6e9060c03266d557a950bcfff519c02eb45f12ef /src/parse/language.c
parent1d0f11e0afd72c458d035e737edf00fe8639e5b1 (diff)
downloadlibcss-2d1f0630c050c409285515bc7761c366615fc0fc.tar.gz
libcss-2d1f0630c050c409285515bc7761c366615fc0fc.tar.bz2
Pedantic line wrapping
svn path=/trunk/libcss/; revision=7554
Diffstat (limited to 'src/parse/language.c')
-rw-r--r--src/parse/language.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse/language.c b/src/parse/language.c
index 691dff3..f9da844 100644
--- a/src/parse/language.c
+++ b/src/parse/language.c
@@ -1117,7 +1117,8 @@ void consumeWhitespace(const parserutils_vector *vector, int *ctx)
bool tokenIsChar(const css_token *token, uint8_t c)
{
return token != NULL && token->type == CSS_TOKEN_CHAR &&
- lwc_string_length(token->ilower) == 1 && lwc_string_data(token->ilower)[0] == c;
+ lwc_string_length(token->ilower) == 1 &&
+ lwc_string_data(token->ilower)[0] == c;
}