summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-16 09:26:53 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-16 09:26:53 -0800
commitfb2f0af8bd14283524e5842b43461ea3fc7701ca (patch)
treeacdf6396d5ebf9b9d65ea85f70cafd7fffdb8991 /hash.c
parent0dd8652385533322d41b30fbd9375e6de9903548 (diff)
downloadtxr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.tar.gz
txr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.tar.bz2
txr-fb2f0af8bd14283524e5842b43461ea3fc7701ca.zip
Use the 11 tag bit pattern to denote a new type: LIT. This is a
pointer to a C static string, intended for literals. We can now treat literal strings as light-weight objects.
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hash.c b/hash.c
index f7b43f7f..0ce6aa68 100644
--- a/hash.c
+++ b/hash.c
@@ -82,6 +82,8 @@ static long ll_hash(obj_t *obj)
return NUM_MAX;
switch (type(obj)) {
+ case LIT:
+ return hash_c_str(litptr(obj));
case CONS:
return (ll_hash(obj->c.car) + ll_hash(obj->c.cdr)) & NUM_MAX;
case STR: