Hey guys, I just have a minor patch. It's a bit silly to use unicode in source even if it's in a printf(), so I modified the following lines in awesome.c to represent those characters in hex form. And then then put the original bit in two comments so you can see it if your locale supports it. :> I dunno, I just think it's a rule of thumb sort of thing. :>
fprintf(stderr, "✘ Configuration file syntax error.\n"); fprintf(stderr, "✔ Configuration file syntax OK.\n"); Changed to: /* Character here is "Heavy ballot X" - ✘ - U+2718 */ fprintf(stderr, "%lc Configuration file syntax error.\n", 0x2718); /* Character here is "Heavy check mark - ✔ - U + 2714 */ fprintf(stderr, "%lc Configuration file syntax OKAY.\n", 0x2714); Patch attached. :> -- To unsubscribe, send mail to [email protected].
