summaryrefslogtreecommitdiff
path: root/lisp/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/hash.c')
-rw-r--r--lisp/hash.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/hash.c b/lisp/hash.c
index 5959330..a6b91ec 100644
--- a/lisp/hash.c
+++ b/lisp/hash.c
@@ -153,8 +153,6 @@ LispHashKey(LispObj *object, int function)
case LispString_t:
string = THESTR(object);
length = STRLEN(object);
- if (length > 32)
- length = 32;
for (i = 0, key = 0; i < length; i++)
key = (key << 1) ^ string[i];
break;