shorthand: Add ',' to value_is_done_parsing()

This commit is contained in:
Benjamin Otte 2012-04-04 19:02:18 +02:00
parent 04c5fdaca6
commit c3f46ab5c0

View 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, '}');
}