summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/skinupdater/skinupdater.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/utils/skinupdater/skinupdater.c b/utils/skinupdater/skinupdater.c
index a5e79fd..a7f7cfd 100644
--- a/utils/skinupdater/skinupdater.c
+++ b/utils/skinupdater/skinupdater.c
@@ -18,9 +18,9 @@ int dump_arg(FILE* out, const char* start, int count, bool close)
{
if (count > 1)
{
- printf(",");
+ PUTCH(out, ',');
} else if (close) {
- printf(")");
+ PUTCH(out, ')');
}
count--;
} else {
@@ -180,6 +180,13 @@ top:
}
in += parse_tag(out, in);
}
+ else if (*in == '#')
+ {
+ while (*in != '\n')
+ {
+ PUTCH(out, *in++);
+ }
+ }
else
{
PUTCH(out, *in++);