summaryrefslogtreecommitdiffstats
path: root/rand.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-08 00:35:39 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-03-08 00:35:39 -0800
commitcd688dfd65e46376045cf396b2251b54dd42da4e (patch)
treeafff8a3458bac671632cf2ba670fd7ca523eed92 /rand.c
parent8103138a80969ca52386e842598b0ce55e4166ab (diff)
downloadtxr-cd688dfd65e46376045cf396b2251b54dd42da4e.tar.gz
txr-cd688dfd65e46376045cf396b2251b54dd42da4e.tar.bz2
txr-cd688dfd65e46376045cf396b2251b54dd42da4e.zip
* rand.c (rand_init): Oops! Spectacular silliness here
broke the symbol module: two intern calls in consecutive lines, one for the name without "earmuffs", one with, leading to the situation that the C code looks for a dynamic variable that does not exist.
Diffstat (limited to 'rand.c')
-rw-r--r--rand.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/rand.c b/rand.c
index 6a2b4dbf..d9f939e3 100644
--- a/rand.c
+++ b/rand.c
@@ -249,7 +249,6 @@ val rnd(val modulus, val state)
void rand_init(void)
{
- random_state_s = intern(lit("random-state"), user_package);
- reg_var(intern(lit("*random-state*"), user_package),
- make_random_state(num_fast(42)));
+ random_state_s = intern(lit("*random-state*"), user_package);
+ reg_var(random_state_s, make_random_state(num_fast(42)));
}