From 1cbf132da8e23fc92e49465c2dce2fb7a2b7617a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Thu, 30 Aug 2001 23:55:23 -0700
Subject: [PATCH] commented out some useless hokus pokus that doesn't really do
 anything

Rev: src/svalue.c:1.117
---
 src/svalue.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/svalue.c b/src/svalue.c
index ca428b118c..8eeafd3baa 100644
--- a/src/svalue.c
+++ b/src/svalue.c
@@ -62,7 +62,7 @@ static int pike_isnan(double x)
 #endif /* HAVE__ISNAN */
 #endif /* HAVE_ISNAN */
 
-RCSID("$Id: svalue.c,v 1.116 2001/08/15 03:31:55 hubbe Exp $");
+RCSID("$Id: svalue.c,v 1.117 2001/08/31 06:55:23 hubbe Exp $");
 
 struct svalue dest_ob_zero = {
   T_INT, 0,
@@ -519,8 +519,10 @@ PMOD_EXPORT unsigned INT32 hash_svalue(const struct svalue *s)
     q=DO_NOT_WARN((unsigned INT32)(s->u.float_number * 16843009.731757771173));
     break;
   }
+#if 0
   q+=q % 997;
   q+=((q + s->type) * 9248339);
+#endif
   
   return q;
 }
-- 
GitLab