vote up 1 vote down star

is this supposed to happen?

: (show NIL)
NIL NIL
-> NIL
: (onOff)
-> T
: (show NIL)
T T
-> T
: (=T NIL)
-> T
: 

(onOff sym ..) -> flg

Logical negates the VAL's of all argument symbols sym. Returns the
new value of the last symbol.
  • Should not the symbol names be passed explicitly?
  • Why does it return value of the last symbol?
flag
Is =T a typo, or do you actually have an operator of that name? – Svante Oct 27 at 21:03
There actually is such an operator in picolisp. – Amigable Clark Kant Oct 28 at 7:20

1 Answer

vote up 2 vote down

It's a bug in the PicoLisp implementation with the onOff macro.

The parameters of the onOff function are: (onOff var ..) -> flg

It takes a var and many more variables and logically negates them (true becomes false, false becomes true). I'm willing to bet that the onOff macro takes a single list of arguments. Which means that if NO arguments are given to it, that list of arguments is empty which means the symbol given to the function is NIL.

Macro is bolded because that's where the problem lies. Using a macro makes it so you can pass the symbols to it without quoting. So the onOff macro is generating incorrect code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.