diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-22 03:38:11 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-22 03:38:11 -0800 |
commit | 1e2b6354bea11c067745a456ed372fbaa5245ec2 (patch) | |
tree | 4b51493f131c17830f8f3de0db3843af8a780213 /lib.c | |
parent | 26f0db2ae285c260b18adf469511baad1bfee37b (diff) | |
download | txr-1e2b6354bea11c067745a456ed372fbaa5245ec2.tar.gz txr-1e2b6354bea11c067745a456ed372fbaa5245ec2.tar.bz2 txr-1e2b6354bea11c067745a456ed372fbaa5245ec2.zip |
* lib.c (init): Hash bugfix: added missing call to hash_init.
Previously this function did nothing, but now it interns
some important symbols.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4204,6 +4204,7 @@ void init(const wchar_t *pn, mem_t *(*oom)(mem_t *, size_t), stream_init(); eval_init(); filter_init(); + hash_init(); gc_state(gc_save); } |