[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-dev] OSCresponderNode issue



/*
In OSCresponderNode should the following not call the action with time, responder, and msg as arguments, rather than as they are now:

	removeWhenDone {
		var func;
		func = action;
		action = { arg time, msg;
			func.value(time, msg);
			this.remove;
		}
	}

	value { arg time, msg;
		action.value(time, msg)
	}

Are these bugs or is there some reason for this?
*/

I simply didn't think of it. Please fix it.
--








.