From 999990c23470bfa1340fe6356f85ae2e086cf052 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Wed, 2 Jun 2010 05:45:34 +0000 Subject: Theme Editor: Fixed a small bug with asterisk handling in tag parameter argument codes and fixed bugs with handling escaped characters git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26460 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/skin_scan.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'utils/themeeditor/skin_scan.c') diff --git a/utils/themeeditor/skin_scan.c b/utils/themeeditor/skin_scan.c index 37c948fb3c..28d097125a 100644 --- a/utils/themeeditor/skin_scan.c +++ b/utils/themeeditor/skin_scan.c @@ -61,6 +61,9 @@ char* scan_string(char** document) continue; } + if(*cursor == TAGSYM) + cursor++; + if(*cursor == '\n') { skin_error(UNEXPECTED_NEWLINE); @@ -77,6 +80,9 @@ char* scan_string(char** document) buffer[length] = '\0'; for(i = 0; i < length; i++) { + if(*cursor == TAGSYM) + cursor++; + if(*cursor == COMMENTSYM) { skip_comment(&cursor); -- cgit v1.2.3