Mercurial > hg > xemacs-beta
comparison src/unicode.c @ 1726:a8d8f419b459
[xemacs-hg @ 2003-09-30 15:26:34 by james]
Add type information to xfree to avoid alias creation.
author | james |
---|---|
date | Tue, 30 Sep 2003 15:27:01 +0000 |
parents | 969b7290edca |
children | 1e5b7843dfa0 |
comparison
equal
deleted
inserted
replaced
1725:7ff8f4d70aec | 1726:a8d8f419b459 |
---|---|
425 } | 425 } |
426 break; | 426 break; |
427 } | 427 } |
428 } | 428 } |
429 | 429 |
430 xfree (table); | 430 xfree (table, void *); |
431 } | 431 } |
432 | 432 |
433 static void | 433 static void |
434 free_to_unicode_table (void *table, int level) | 434 free_to_unicode_table (void *table, int level) |
435 { | 435 { |
443 if (tab[i] != to_unicode_blank_1) | 443 if (tab[i] != to_unicode_blank_1) |
444 free_to_unicode_table (tab[i], 1); | 444 free_to_unicode_table (tab[i], 1); |
445 } | 445 } |
446 } | 446 } |
447 | 447 |
448 xfree (table); | 448 xfree (table, void *); |
449 } | 449 } |
450 | 450 |
451 void | 451 void |
452 free_charset_unicode_tables (Lisp_Object charset) | 452 free_charset_unicode_tables (Lisp_Object charset) |
453 { | 453 { |