1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(syms_of_composite): Don't make the compostion hash table week.

This commit is contained in:
Kenichi Handa 2003-12-01 12:33:13 +00:00
parent ed6d66130e
commit 1ace9906b3

View File

@ -843,7 +843,9 @@ syms_of_composite ()
args[0] = QCtest;
args[1] = Qequal;
args[2] = QCweakness;
args[3] = Qt;
/* Fixme: It seems that a weak hash table leads to segfault in GC,
but I have not yet found why. -- handa@m17n.org */
args[3] = Qnil;
args[4] = QCsize;
args[5] = make_number (311);
composition_hash_table = Fmake_hash_table (6, args);