[Tinyos-commits]
CVS: tinyos-1.x/tos/lib/VM/languages/motlle/standalone
scheme.c, 1.8, 1.9
David Gay
idgay at users.sourceforge.net
Mon Oct 31 17:45:24 PST 2005
Update of /cvsroot/tinyos/tinyos-1.x/tos/lib/VM/languages/motlle/standalone
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29122
Modified Files:
scheme.c
Log Message:
fix &, ^
Index: scheme.c
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/tos/lib/VM/languages/motlle/standalone/scheme.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** scheme.c 29 Oct 2005 17:27:18 -0000 1.8
--- scheme.c 1 Nov 2005 01:45:21 -0000 1.9
***************
*** 73,78 ****
{ ">=", 2, b_ge },
{ "|", -1, b_bitor },
! { "^", -1, b_bitor },
! { "&", -1, b_bitor },
{ "<<", 2, b_shift_left },
{ ">>", 2, b_shift_right },
--- 73,78 ----
{ ">=", 2, b_ge },
{ "|", -1, b_bitor },
! { "^", -1, b_bitxor },
! { "&", -1, b_bitand },
{ "<<", 2, b_shift_left },
{ ">>", 2, b_shift_right },
More information about the Tinyos-commits
mailing list