summaryrefslogtreecommitdiff
path: root/tex/context/base/supp-ran.lua
diff options
context:
space:
mode:
authorMarius <mariausol@gmail.com>2011-07-13 23:40:25 +0300
committerMarius <mariausol@gmail.com>2011-07-13 23:40:25 +0300
commit3dd416f677074c27a248e3433695a6fe8c13ef69 (patch)
tree20c4a573a64f2079e2e3d3fe93b004af3caf7b2f /tex/context/base/supp-ran.lua
parent1ea50dab7f30289214b661f2cbcf53e97e6af0b6 (diff)
downloadcontext-3dd416f677074c27a248e3433695a6fe8c13ef69.tar.gz
beta 2011.07.13 20:14
Diffstat (limited to 'tex/context/base/supp-ran.lua')
-rw-r--r--tex/context/base/supp-ran.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/tex/context/base/supp-ran.lua b/tex/context/base/supp-ran.lua
index accd5c94c..75202f696 100644
--- a/tex/context/base/supp-ran.lua
+++ b/tex/context/base/supp-ran.lua
@@ -16,7 +16,6 @@ local commands = commands
local math = math
local random, randomseed, round, seed, last = math.random, math.randomseed, math.round, false, 1
-local texwrite = tex.write
function math.setrandomseedi(n,comment)
if not n then
@@ -35,12 +34,12 @@ end
function commands.getrandomcounta(min,max)
last = random(min,max)
- texwrite(last)
+ context(last)
end
function commands.getrandomcountb(min,max)
last = random(min,max)/65536
- texwrite(last)
+ context(last)
end
function commands.setrandomseed(n)
@@ -49,7 +48,7 @@ function commands.setrandomseed(n)
end
function commands.getrandomseed(n)
- texwrite(last)
+ context(last)
end
-- maybe stack