aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/strap/SINT.lsp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-11-30 01:16:23 +0000
committerdos-reis <gdr@axiomatics.org>2008-11-30 01:16:23 +0000
commitcb65c7fd822eb7e5b8a32bda101b6f85c6cf3cdd (patch)
tree62b56048161f51096f8a6873e598c24dc3ce0374 /src/algebra/strap/SINT.lsp
parent23cd05760f795f58d2eafc56b93d0f7e22e89c9a (diff)
downloadopen-axiom-cb65c7fd822eb7e5b8a32bda101b6f85c6cf3cdd.tar.gz
* interp/define.boot (mustInstantiate): Fix thinko introduced by
earlier tweaks. (mkExplicitCategoryFunction): Likewise.
Diffstat (limited to 'src/algebra/strap/SINT.lsp')
-rw-r--r--src/algebra/strap/SINT.lsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/strap/SINT.lsp b/src/algebra/strap/SINT.lsp
index cce89b66..70537d38 100644
--- a/src/algebra/strap/SINT.lsp
+++ b/src/algebra/strap/SINT.lsp
@@ -448,9 +448,9 @@
(EXIT (|error| "integer too large to represent in a machine word"))))
(DEFUN |SINT;random;$;52| ($)
- (SEQ (SETELT $ 6
- (REMAINDER (TIMES 314159269 (|getShellEntry| $ 6))
- 2147483647))
+ (SEQ (|setShellEntry| $ 6
+ (REMAINDER (TIMES 314159269 (|getShellEntry| $ 6))
+ 2147483647))
(EXIT (REMAINDER (|getShellEntry| $ 6) 67108864))))
(DEFUN |SINT;random;2$;53| (|n| $) (DECLARE (IGNORE $)) (RANDOM |n|))