Changeset 55 for trunk/orca/op.c
- Timestamp:
- 02/18/06 18:19:46 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/op.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/op.c
r54 r55 734 734 735 735 case OT_WORD: 736 if( a->word.atom == b->word.atom)736 if( orAtom(a) == orAtom(b) ) 737 737 logic = 1; 738 738 break; … … 746 746 int orEqual( const OValue* a, const OValue* b ) 747 747 { 748 if( orIs(a, OT_INTEGER) ) 748 if( orIsWord(orType(a)) && orIsWord(orType(b)) ) 749 { 750 if( orAtom(a) == orAtom(b) ) 751 return 1; 752 } 753 else if( orIs(a, OT_INTEGER) ) 749 754 { 750 755 if( orIs(b, OT_INTEGER) )
