Fix code highlighting bug

This commit is contained in:
2018-10-09 13:10:24 +02:00
parent 27bfbc7855
commit 56280797d0

View File

@@ -86,9 +86,12 @@ char *colorize(char c)
case ',': case ',':
cs = colortheme[7]; cs = colortheme[7];
break; break;
default: case '#':
cs = colortheme[8]; cs = colortheme[8];
break; break;
default:
;
break;
} }
return cs; return cs;