Changeset 496 for trunk/orca
- Timestamp:
- 11/08/07 22:09:39 (13 months ago)
- Location:
- trunk/orca
- Files:
-
- 2 modified
-
context.c (modified) (1 diff)
-
tests/working/context.r (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/context.c
r154 r496 527 527 if( (it->type == OT_WORD) || 528 528 (it->type == OT_SETWORD) || 529 (it->type == OT_LITWORD) || 529 530 (it->type == OT_GETWORD) ) 530 531 { -
trunk/orca/tests/working/context.r
r1 r496 17 17 print do blk/7/1 18 18 19 20 ; Shows lit-words are bound to context. 21 c: context [ 22 a: none 23 f: func [val] [set 'a val] 24 ] 25 c/f 5 26 print c/a
