piano.ins problems in CM (again)

Tobias Kunze tkunze@ulysses.Stanford.EDU
Tue, 19 Aug 1997 18:38:12 -0700 (PDT)


I've reported the problem 'couple of times and finally given up.

It is absolutely necessary for a clm instrument to have a
standard, non-keyword/optional, etc. <start> parameter as their
first argument, if it is to work with cm.  cm relies on passing
time information by position.

Thus, rewrite

  (definstrument (p :language :c :c-options "-c -O3") 
    (&key
     (start 0.0) 
  ...)

as

  (definstrument (p :language :c :c-options "-c -O3") 
    start
    (&key
  ..)


-Tobias