]> git.cworth.org Git - grrobot/blobdiff - src/svg/bin2cstring.c
grrobot will now load SVG icons from /share/grrobot/*.svg
[grrobot] / src / svg / bin2cstring.c
index 86ef5411f4e9d1da82111461990a696456125323..97267b7cd9fb21ef1a202554abae9e4e85ee2018 100644 (file)
@@ -23,7 +23,7 @@ main (int argc, char *argv[])
            if (c == EOF)
                break;
 
-           if (isprint (c) && ! isspace (c))
+           if (isprint (c) && ! isspace (c) && c != '"')
                printf ("%c", c);
            else
                printf ("\\%03o", c);