aboutsummaryrefslogtreecommitdiff
path: root/src/interp/setvars.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-09-25 20:48:45 +0000
committerdos-reis <gdr@axiomatics.org>2009-09-25 20:48:45 +0000
commit489cfd14dccfcaf7b0ebd41e9d0f8e081a9d1d9f (patch)
tree84a87ab3bdba58fe9fd2975efc829d1ed10b8781 /src/interp/setvars.boot
parent7704713134cb251be6129f38833930228e09eee2 (diff)
downloadopen-axiom-489cfd14dccfcaf7b0ebd41e9d0f8e081a9d1d9f.tar.gz
* boot/ast.boot (bfMember): Improve a bit.
* boot/tokens.boot: Don't rename 'is' and 'inst'. * boot/parser.boot: Use 'in' instead of 'MEMQ' where approrpriate. * interp/: Likewise.
Diffstat (limited to 'src/interp/setvars.boot')
-rw-r--r--src/interp/setvars.boot10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/setvars.boot b/src/interp/setvars.boot
index 51c31f6b..a35a2f30 100644
--- a/src/interp/setvars.boot
+++ b/src/interp/setvars.boot
@@ -334,7 +334,7 @@ displaySetVariableSettings(setTree,label) ==
opt :=
functionp(setData.setVar) => FUNCALL( setData.setVar,"%display%")
'"unimplemented"
- if PAIRP opt then opt := [:[o,'" "] for o in opt]
+ if CONSP opt then opt := [:[o,'" "] for o in opt]
sayBrightly concat(setOption,'%b,opt,'%d)
st = 'STRING =>
opt := object2String eval setData.setVar
@@ -523,7 +523,7 @@ setExposeAddGroup arg ==
sayAsManyPerLineAsPossible [object2String first x for x in
$globalExposureGroupAlist]
for x in arg repeat
- if PAIRP x then x := QCAR x
+ if CONSP x then x := QCAR x
x = 'all =>
$localExposureData.0 :=[first x for x in $globalExposureGroupAlist]
$localExposureData.1 :=NIL
@@ -551,7 +551,7 @@ setExposeAddConstr arg ==
displayExposedConstructors()
for x in arg repeat
x := unabbrev x
- if PAIRP x then x := QCAR x
+ if CONSP x then x := QCAR x
-- if the constructor is known, we know what type it is
null getConstructorKindFromDB x =>
sayKeyedMsg("S2IZ0049J",[x])
@@ -587,7 +587,7 @@ setExposeDropGroup arg ==
sayMSG '" "
displayExposedGroups()
for x in arg repeat
- if PAIRP x then x := QCAR x
+ if CONSP x then x := QCAR x
x = 'all =>
$localExposureData.0 := NIL
$localExposureData.1 := NIL
@@ -618,7 +618,7 @@ setExposeDropConstr arg ==
displayHiddenConstructors()
for x in arg repeat
x := unabbrev x
- if PAIRP x then x := QCAR x
+ if CONSP x then x := QCAR x
-- if the constructor is known, we know what type it is
null getConstructorKindFromDB x =>
sayKeyedMsg("S2IZ0049J",[x])