comparison 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
comparison
equal deleted inserted replaced
3351:558805adfd90 3352:8dbdcd070418
200 200
201 Lisp_Object Qutf_8_bom; 201 Lisp_Object Qutf_8_bom;
202 202
203 #ifdef MULE 203 #ifdef MULE
204 204
205 /* #### Using ints for to_unicode is OK (as long as they are >= 32 bits). 205 /* Using ints for to_unicode is OK (as long as they are >= 32 bits).
206 However, shouldn't the shorts below be unsigned? 206 In from_unicode, we're converting from Mule characters, which means
207 207 that the values being converted to are only 96x96, and we can save
208 Answer: Doesn't matter because the values being converted to are only 208 space by using shorts (signedness doesn't matter). */
209 96x96. */
210 static int *to_unicode_blank_1; 209 static int *to_unicode_blank_1;
211 static int **to_unicode_blank_2; 210 static int **to_unicode_blank_2;
212 211
213 static short *from_unicode_blank_1; 212 static short *from_unicode_blank_1;
214 static short **from_unicode_blank_2; 213 static short **from_unicode_blank_2;