| 634 | int is_closure(pointer p) { return (type(p)==T_CLOSURE); } |
| 635 | int is_macro(pointer p) { return (type(p)==T_MACRO); } |
| 636 | pointer closure_code(pointer p) { return car(p); } |
| 637 | pointer closure_env(pointer p) { return cdr(p); } |
| 638 | |
| 639 | int is_continuation(pointer p) { return (type(p)==T_CONTINUATION); } |