Correct oversight - 0xfe was not changed to 0xff in lambda args.

This commit is contained in:
Jesse D. McDonald 2010-04-12 14:05:37 -05:00
parent bc3df6dd17
commit 7e5014ab07
2 changed files with 10 additions and 10 deletions

View File

@ -8,11 +8,11 @@
#(
#i"../lib/primitive/and.rla"
(
#S(#="lambda" #(( 3) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#t) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #(( 4) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #(( 5) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #(( 3) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #((#t) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #(( 4) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #(( 5) #f) #() 0 "" 0xff 0x01 0x02 0x02)
)
)
#()

View File

@ -8,11 +8,11 @@
#(
#i"../lib/primitive/or.rla"
(
#S(#="lambda" #((#f) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #(( 3) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#t) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xfe 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #(( 3) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #((#t) #f) #() 0 "" 0xff 0x01 0x02 0x02)
#S(#="lambda" #((#f) #f) #() 0 "" 0xff 0x01 0x02 0x02)
)
)
#()