[rkward-cvs] SF.net SVN: rkward: [845] trunk/rkward/rkward/rbackend/rthread.cpp
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Wed Oct 11 11:42:26 UTC 2006
Revision: 845
http://svn.sourceforge.net/rkward/?rev=845&view=rev
Author: tfry
Date: 2006-10-11 04:42:22 -0700 (Wed, 11 Oct 2006)
Log Message:
-----------
Missing parenthesis caused most object changes to be ignored
Modified Paths:
--------------
trunk/rkward/rkward/rbackend/rthread.cpp
Modified: trunk/rkward/rkward/rbackend/rthread.cpp
===================================================================
--- trunk/rkward/rkward/rbackend/rthread.cpp 2006-10-11 11:36:24 UTC (rev 844)
+++ trunk/rkward/rkward/rbackend/rthread.cpp 2006-10-11 11:42:22 UTC (rev 845)
@@ -315,7 +315,7 @@
if (call_length == 2) { // schedule symbol update for later
if (call[0] == "ws") {
RK_ASSERT (current_command);
- if ((current_command->type () & RCommand::ObjectListUpdate) || (!current_command->type () & RCommand::Sync)) { // ignore Sync commands that are not flagged as ObjectListUpdate
+ if ((current_command->type () & RCommand::ObjectListUpdate) || (!(current_command->type () & RCommand::Sync))) { // ignore Sync commands that are not flagged as ObjectListUpdate
if (!changed_symbol_names.contains (call[1])) changed_symbol_names.append (call[1]);
}
return;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list