diff src/unicode.c @ 3352:8dbdcd070418

[xemacs-hg @ 2006-04-22 15:18:54 by stephent] Improved comment on internal Unicode tables. <87zmidtzky.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Sat, 22 Apr 2006 15:18:55 +0000
parents facf3239ba30
children d1754e7f0cea
line wrap: on
line diff
--- a/src/unicode.c	Fri Apr 21 21:51:20 2006 +0000
+++ b/src/unicode.c	Sat Apr 22 15:18:55 2006 +0000
@@ -202,11 +202,10 @@
 
 #ifdef MULE 
 
-/* #### Using ints for to_unicode is OK (as long as they are >= 32 bits).
-   However, shouldn't the shorts below be unsigned?
-
-   Answer: Doesn't matter because the values being converted to are only
-   96x96. */
+/* Using ints for to_unicode is OK (as long as they are >= 32 bits).
+   In from_unicode, we're converting from Mule characters, which means
+   that the values being converted to are only 96x96, and we can save
+   space by using shorts (signedness doesn't matter). */
 static int *to_unicode_blank_1;
 static int **to_unicode_blank_2;