[KSS-checkins] r53821 - kukit/kukit.js/branch/1.4/kukit
gotcha at codespeak.net
gotcha at codespeak.net
Wed Apr 16 20:37:44 CEST 2008
Author: gotcha
Date: Wed Apr 16 20:37:42 2008
New Revision: 53821
Modified:
kukit/kukit.js/branch/1.4/kukit/kssparser.js
Log:
fix action-cancel
Modified: kukit/kukit.js/branch/1.4/kukit/kssparser.js
==============================================================================
--- kukit/kukit.js/branch/1.4/kukit/kssparser.js (original)
+++ kukit/kukit.js/branch/1.4/kukit/kssparser.js Wed Apr 16 20:37:42 2008
@@ -315,7 +315,7 @@
;;; }
// set it
var action = this.actions.getOrCreateAction(value.txt, valuesByReturnType);
- if (actionType == 'X' && action.type == null) {
+ if (actionType == 'X' && action.type != null) {
// action-cancel, and the action existed already in the same block:
// we delete it straight ahead
this.actions.deleteAction(value.txt);
More information about the Kukit-checkins
mailing list