summaryrefslogtreecommitdiff
path: root/src/cssparser.cc
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-02-09 14:56:31 -0300
committerJorge Arellano Cid <jcid@dillo.org>2009-02-09 14:56:31 -0300
commite32686c10a4f4fe7c34b181845220b5c491f32fb (patch)
treec090052c311a3a1732d03dc17fe357f97437b397 /src/cssparser.cc
parent74f64426001a693759e47963f99965e0e6ee847d (diff)
whitespace cleanup: 's/ +$//g'
Diffstat (limited to 'src/cssparser.cc')
-rw-r--r--src/cssparser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc
index 81e289a2..625bb8a0 100644
--- a/src/cssparser.cc
+++ b/src/cssparser.cc
@@ -485,7 +485,7 @@ static void Css_next_token(CssParser * parser)
escaped = true;
d = Css_getc(parser);
if (isxdigit(d)) {
- /* Read hex Unicode char. (Actually, strings are yet only 8
+ /* Read hex Unicode char. (Actually, strings are yet only 8
* bit.) */
hexbuf[0] = d;
j = 1;
@@ -1009,7 +1009,7 @@ static bool Css_parse_simple_selector(CssParser * parser,
Css_next_token(parser);
if (parser->space_separated)
return true;
- } else if (parser->ttype == CSS_TK_CHAR &&
+ } else if (parser->ttype == CSS_TK_CHAR &&
(parser->tval[0] == '#' ||
parser->tval[0] == '.' ||
parser->tval[0] == ':')) {