In Parenscript 20061003, (js (slot-value (if yes a b) 'prop)) => "yes ? a : b.prop;" when I need "(yes ? a : b).prop". Similarly, (js (slot-value (or a b) 'prop)) => "a || b.prop;" instead of "(a || b).prop". Can this be fixed, and/or is there a way to make the parentheses go the way I want? Thank you, Daniel