summaryrefslogtreecommitdiff
path: root/src/composite.c
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2003-12-01 12:33:13 +0000
committerKenichi Handa <handa@m17n.org>2003-12-01 12:33:13 +0000
commit23463ed1a91a3a17d26c69fed91f24c8c1f1d416 (patch)
treec18e900a524705c2514513d08c28980c4e219bf0 /src/composite.c
parent18b6634c27d982061b238e941bd4c1477d495fe5 (diff)
downloademacs-23463ed1a91a3a17d26c69fed91f24c8c1f1d416.tar.gz
(syms_of_composite): Don't make the compostion hash table week.
Diffstat (limited to 'src/composite.c')
-rw-r--r--src/composite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c
index ef4318f5442..b4e931c6a20 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -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);