]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - utf8.c
Fix another Blub bug .. learn to use comments properly :P
[xonotic/gmqcc.git] / utf8.c
diff --git a/utf8.c b/utf8.c
index 7a3f7dcc9c5605a1069f0a38384da76c692cea2a..14510bc09818399944dee9b327aa8146469e7391 100644 (file)
--- a/utf8.c
+++ b/utf8.c
@@ -47,11 +47,11 @@ static unsigned char utf8_lengths[256] = {
 };
 
 static uchar_t utf8_range[5] = {
-       1,       /* invalid - let's not allow the creation of 0-bytes :P
-       1,        * ascii minimum
-       0x80,     * 2-byte minimum
-       0x800,    * 3-byte minimum
-       0x10000,  * 4-byte minimum */
+       1,       /* invalid - let's not allow the creation of 0-bytes :P */
+       1,       /* ascii minimum                                        */
+       0x80,    /* 2-byte minimum                                       */
+       0x800,   /* 3-byte minimum                                       */
+       0x10000, /* 4-byte minimum                                       */
 };
 
 /** Analyze the next character and return various information if requested.