summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-10-24 06:54:34 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-10-24 06:54:34 -0700
commit11ae94a3a187292c882e21c17bd2531ca44283ff (patch)
tree0614a7f54faf47d906fe130d58e17a43ac184e69 /hash.c
parent96f7e4ab111b641d2f26b97f75ef4d81151417a1 (diff)
downloadtxr-11ae94a3a187292c882e21c17bd2531ca44283ff.tar.gz
txr-11ae94a3a187292c882e21c17bd2531ca44283ff.tar.bz2
txr-11ae94a3a187292c882e21c17bd2531ca44283ff.zip
hash-construct: eliminate redundant intern.
* hash.c (hash_init): register hash-constrct using symbol in hash_construct_s variable that was previously interned rather than result of new call to intern.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index bb270de9..ab2a0fd9 100644
--- a/hash.c
+++ b/hash.c
@@ -1360,7 +1360,7 @@ void hash_init(void)
reg_fun(intern(lit("make-similar-hash"), user_package), func_n1(make_similar_hash));
reg_fun(intern(lit("copy-hash"), user_package), func_n1(copy_hash));
reg_fun(intern(lit("hash"), user_package), func_n0v(hashv));
- reg_fun(intern(lit("hash-construct"), user_package), func_n2(hash_construct));
+ reg_fun(hash_construct_s, func_n2(hash_construct));
reg_fun(intern(lit("hash-from-pairs"), user_package), func_n1v(hash_from_pairs_v));
reg_fun(intern(lit("hash-list"), user_package), func_n1v(hash_list));
reg_fun(intern(lit("gethash"), user_package), func_n3o(gethash_n, 2));