From c3f46ab5c0395f44e35c5ba4ed2a21891f4e19ad Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 4 Apr 2012 19:02:18 +0200 Subject: [PATCH] shorthand: Add ',' to value_is_done_parsing() --- gtk/gtkcssshorthandpropertyimpl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkcssshorthandpropertyimpl.c b/gtk/gtkcssshorthandpropertyimpl.c index 03d84e8c83..99e2f2a358 100644 --- a/gtk/gtkcssshorthandpropertyimpl.c +++ b/gtk/gtkcssshorthandpropertyimpl.c @@ -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, '}'); }