diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-16 09:26:53 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-16 09:26:53 -0800 |
commit | fb2f0af8bd14283524e5842b43461ea3fc7701ca (patch) | |
tree | acdf6396d5ebf9b9d65ea85f70cafd7fffdb8991 /hash.c | |
parent | 0dd8652385533322d41b30fbd9375e6de9903548 (diff) | |
download | txr-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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: |