summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/themeeditor/skin_parser.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/utils/themeeditor/skin_parser.c b/utils/themeeditor/skin_parser.c
index 0eda9da..f17f688 100644
--- a/utils/themeeditor/skin_parser.c
+++ b/utils/themeeditor/skin_parser.c
@@ -175,7 +175,7 @@ static struct skin_element* skin_parse_viewport(char** document)
}
else if(*cursor == ENUMLISTOPENSYM)
{
- skip_arglist(&cursor);
+ skip_enumlist(&cursor);
}
else
{
@@ -793,7 +793,9 @@ static struct skin_element* skin_parse_code_as_arg(char** document)
char* cursor = *document;
/* Checking for sublines */
- while(*cursor != '\n' && *cursor != '\0')
+ while(*cursor != '\n' && *cursor != '\0'
+ && *cursor != ENUMLISTSEPERATESYM && *cursor != ARGLISTSEPERATESYM
+ && *cursor != ENUMLISTCLOSESYM && *cursor != ARGLISTCLOSESYM)
{
if(*cursor == MULTILINESYM)
{
@@ -810,6 +812,14 @@ static struct skin_element* skin_parse_code_as_arg(char** document)
cursor++;
}
+ else if(*cursor == ARGLISTOPENSYM)
+ {
+ skip_arglist(&cursor);
+ }
+ else if(*cursor == ENUMLISTOPENSYM)
+ {
+ skip_enumlist(&cursor);
+ }
else
{
/* Advancing the cursor as normal */