aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-12-01 12:33:13 +0000
committerKenichi Handa2003-12-01 12:33:13 +0000
commit1ace9906b38aa264daa9c8f066d6993a40016e69 (patch)
treef0fe583499cc472d1f86629d1a0e9b639793f3ed /src
parented6d66130ec00192c2d3dba80fa8db35426ef86f (diff)
downloademacs-1ace9906b38aa264daa9c8f066d6993a40016e69.tar.gz
emacs-1ace9906b38aa264daa9c8f066d6993a40016e69.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 ef4318f5442..b4e931c6a20 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -843,7 +843,9 @@ syms_of_composite ()
843 args[0] = QCtest; 843 args[0] = QCtest;
844 args[1] = Qequal; 844 args[1] = Qequal;
845 args[2] = QCweakness; 845 args[2] = QCweakness;
846 args[3] = Qt; 846 /* Fixme: It seems that a weak hash table leads to segfault in GC,
847 but I have not yet found why. -- handa@m17n.org */
848 args[3] = Qnil;
847 args[4] = QCsize; 849 args[4] = QCsize;
848 args[5] = make_number (311); 850 args[5] = make_number (311);
849 composition_hash_table = Fmake_hash_table (6, args); 851 composition_hash_table = Fmake_hash_table (6, args);