]> Pileus Git - ~andy/gtk/commitdiff
shorthand: Add ',' to value_is_done_parsing()
authorBenjamin Otte <otte@redhat.com>
Wed, 4 Apr 2012 17:02:18 +0000 (19:02 +0200)
committerBenjamin Otte <otte@redhat.com>
Tue, 17 Apr 2012 06:59:19 +0000 (08:59 +0200)
gtk/gtkcssshorthandpropertyimpl.c

index 03d84e8c836b62c4ba70d484f8f21417855238ec..99e2f2a358f5edeaa1bc33f7f4f270b2ecd90322 100644 (file)
@@ -50,6 +50,7 @@ static gboolean
 value_is_done_parsing (GtkCssParser *parser)
 {
   return _gtk_css_parser_is_eof (parser) ||
+         _gtk_css_parser_begins_with (parser, ',') ||
          _gtk_css_parser_begins_with (parser, ';') ||
          _gtk_css_parser_begins_with (parser, '}');
 }