aboutsummaryrefslogtreecommitdiff
path: root/src/interp/parse.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-11-28 17:45:46 +0000
committerdos-reis <gdr@axiomatics.org>2007-11-28 17:45:46 +0000
commitc8289c7f950a2ff7133c299bf612b754ec500ca6 (patch)
treead90813d70a4a4dadf3d8f91a47b989a8ed0729e /src/interp/parse.boot
parent63e653a5d625157a1188b4ef433ea308935cc3f9 (diff)
downloadopen-axiom-c8289c7f950a2ff7133c299bf612b754ec500ca6.tar.gz
* postprop.$(FASLEXT): Remove rule.
* Makefile.pamphlet (OPOBJS): Don't include it anymore. (postpar.$(FASLEXT)): Update requirement. * mark.boot: Move setting of special compiler functions from postprop.lisp to here. * postprop.lisp: Remove. * parse.boot: Register special parser for "xor".
Diffstat (limited to 'src/interp/parse.boot')
-rw-r--r--src/interp/parse.boot3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interp/parse.boot b/src/interp/parse.boot
index d5f07a25..b4cf2d73 100644
--- a/src/interp/parse.boot
+++ b/src/interp/parse.boot
@@ -524,5 +524,6 @@ for x in [["<=", :function parseLessEqual],_
["SEGMENT", :function parseSegment],_
["SEQ", :function parseSeq],_
["VCONS", :function parseVCONS],_
- ["where", :function parseWhere]] repeat
+ ["where", :function parseWhere],_
+ ["xor", :function parseExclusiveOr]] repeat
MAKEPROP(car x, "parseTran", cdr x)