aboutsummaryrefslogtreecommitdiff
path: root/src/interp/br-op1.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/br-op1.boot')
-rw-r--r--src/interp/br-op1.boot12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interp/br-op1.boot b/src/interp/br-op1.boot
index 38f83e2f..c5d51419 100644
--- a/src/interp/br-op1.boot
+++ b/src/interp/br-op1.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2008, Gabriel Dos Reis.
+-- Copyright (C) 2007-2009, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -47,7 +47,7 @@ dbFromConstructor?(htPage) == htpProperty(htPage,'conform)
dbDoesOneOpHaveParameters? opAlist ==
or/[(or/[fn for x in items]) for [op,:items] in opAlist] where fn() ==
- STRINGP x => dbPart(x,2,1) ^= '"0"
+ STRINGP x => dbPart(x,2,1) ~= '"0"
KAR x
--============================================================================
-- Master Switch Functions for Operation Views
@@ -333,7 +333,7 @@ dbGatherData(htPage,opAlist,which,key) ==
htpProperty(htPage,'attrAlist)
acc := nil
initialExposure :=
- htPage and htpProperty(htPage,'conform) and which ^= '"package operation"
+ htPage and htpProperty(htPage,'conform) and which ~= '"package operation"
=> true
--never star ops from a constructor
nil
@@ -655,13 +655,13 @@ dbShowOpDocumentation(htPage,opAlist,which,data) ==
for item in alist for j in 0.. repeat
[sig,predicate,origin,exposeFlag,comments] := item
exposeFlag or not $exposedOnlyIfTrue =>
- if comments ^= '"" and STRINGP comments and (k := string2Integer comments) then
+ if comments ~= '"" and STRINGP comments and (k := string2Integer comments) then
comments :=
MEMQ(k,'(0 1)) => '""
dbReadComments k
tail := CDDDDR item
RPLACA(tail,comments)
- doc := (STRINGP comments and comments ^= '"" => comments; nil)
+ doc := (STRINGP comments and comments ~= '"" => comments; nil)
pred := predicate or true
index := (exactlyOneOpSig => nil; base + j)
if which = '"package operation" then
@@ -935,7 +935,7 @@ getDomainOpTable(dom,fromIfTrue,:options) ==
abb := getConstructorAbbreviation conname
opAlist := getOperationAlistFromLisplib conname
"append"/[REMDUP [[op1,:fn] for [sig,slot,pred,key,:.] in u
- | key ^= 'Subsumed and ((null ops and (op1 := op)) or (op1 := memq(op,ops)))]
+ | key ~= 'Subsumed and ((null ops and (op1 := op)) or (op1 := memq(op,ops)))]
for [op,:u] in opAlist] where
memq(op,ops) == --dirty trick to get 0 and 1 instead of Zero and One
MEMQ(op,ops) => op