[CM] events help
todd ingalls
testcase at asu.edu
Sat Jun 29 17:16:55 PDT 2002
I am having a little problem I hope someone can help out with.
Let's say I have a process called 'my-process' which takes 3 input
values.
Now the following works fine:
(events (my-process 5 50 1200) "test.aiff")
and of course this works fine with the optional ahead argument
(events (list (my-process 5 50 1200) (my-process 5 300 800)) "test.aiff"
10))
But this fails
(events (list (my-process 5 50 1200) (my-process 5 300 800)) "test.aiff"
'(1 10)))
With the error in clisp of
*** - NO-APPLICABLE-METHOD: When calling #<GENERIC-FUNCTION
PROCESS-EVENTS> with arguments (MY-PROCESS 1 1 #<COMPILED-CLOSURE
EVENTS-1>), no method is applicable
Now, this somewhat makes sense since I am attempting to apply the list
of ahead arguments to a list of functions not objects. My question is,
is there a way to get around this that I am not seeing?
Thanks.
More information about the Cmdist
mailing list