aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-analy.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-04-28 15:23:15 +0000
committerdos-reis <gdr@axiomatics.org>2012-04-28 15:23:15 +0000
commit644c54fa10e380f35a1d0880a79afbd29a8b2af7 (patch)
tree7351761c2e11fd21575a71591301047edf55c5f7 /src/interp/i-analy.boot
parent5bd0bc2d8d27b665b8aae65fee093adbd2172dd5 (diff)
downloadopen-axiom-644c54fa10e380f35a1d0880a79afbd29a8b2af7.tar.gz
* interp/boot-pkg.lisp (gensym?): Check for non-null object.
* interp/clammed.boot: Use it in lieu of GENSYMP. * interp/debug.lisp: Likewise. * interp/g-opt.boot: Likewise. * interp/g-util.boot: Likewise. * interp/i-analy.boot: Likewise. * interp/trace.boot: Likewise. * interp/vmlisp.lisp (GENSYMP): Remove.
Diffstat (limited to 'src/interp/i-analy.boot')
-rw-r--r--src/interp/i-analy.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/i-analy.boot b/src/interp/i-analy.boot
index 54d576b1..c54043c5 100644
--- a/src/interp/i-analy.boot
+++ b/src/interp/i-analy.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2011, Gabriel Dos Reis.
+-- Copyright (C) 2007-2012, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -370,7 +370,7 @@ bottomUpIdentifier(t,id) ==
expr:= objVal u
om := objMode(u)
(om ~= $EmptyMode) and (om isnt ['RuleCalled,.]) =>
- $genValue or GENSYMP(id) =>
+ $genValue or gensym?(id) =>
null tar => [om]
(r := resolveTM(om,tar)) => [r]
[om]