aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-12-02 01:55:06 +0000
committerKenichi Handa2003-12-02 01:55:06 +0000
commit6a83ee8a4aa9f5dedb955e8d4acf838e5626ed5e (patch)
tree72be23d012abae02cb3b69ed612f4b4a899f47a3 /src
parente6baeb7650d2adf09cdf537f032631fb8f609138 (diff)
downloademacs-6a83ee8a4aa9f5dedb955e8d4acf838e5626ed5e.tar.gz
emacs-6a83ee8a4aa9f5dedb955e8d4acf838e5626ed5e.zip
(syms_of_composite): Don't make the compostion hash table week.
Diffstat (limited to 'src')
-rw-r--r--src/composite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c
index 683330731ed..a81ac3182b9 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -755,7 +755,9 @@ syms_of_composite ()
755 args[0] = QCtest; 755 args[0] = QCtest;
756 args[1] = Qequal; 756 args[1] = Qequal;
757 args[2] = QCweakness; 757 args[2] = QCweakness;
758 args[3] = Qt; 758 /* Fixme: It seems that a weak hash table leads to segfault in GC,
759 but I have not yet found why. -- handa@m17n.org */
760 args[3] = Qnil;
759 args[4] = QCsize; 761 args[4] = QCsize;
760 args[5] = make_number (311); 762 args[5] = make_number (311);
761 composition_hash_table = Fmake_hash_table (6, args); 763 composition_hash_table = Fmake_hash_table (6, args);