[CM] appending sequences

Orm Finnendahl finnendahl@folkwang-hochschule.de
Thu, 19 Dec 2002 09:21:02 +0100


Hi,

trying to append two sequences fails with the new cm-2.4.0 on my
machine (using cm with guile).

It used to work with an older version of cm-2.4.0 (from November)


Following is an excerpt of my printout:

   Defined are two tracks, called 'ger_tr0_a and 'ger_tr0_b

they can be listed:

   (list-subobjects (find-object 'ger_tr0_a))

->  0. #i(midi time 0 keynum 75 duration 0.125 amplitude 90 channel 0)
    1. #i(midi time 0.125 keynum 74 duration 0.125 amplitude 64 channel 0)
    2. #i(midi time 0.25 keynum 72 duration 0.25 amplitude 64 channel 0)
    3. #i(midi time 0.5 keynum 74 duration 0.25 amplitude 90 channel 0)

    <...>

   21. #i(midi time 3.25 keynum 72 duration 0.25 amplitude 64 channel 0)

   (list-subobjects (find-object 'ger_tr0_b))

->  0. #i(midi time 0 keynum 75 duration 0.125 amplitude 90 channel 0)
    1. #i(midi time 0.125 keynum 74 duration 0.125 amplitude 64 channel 0)
    2. #i(midi time 0.25 keynum 72 duration 0.25 amplitude 64 channel 0)
    3. #i(midi time 0.5 keynum 74 duration 0.25 amplitude 90 channel 0)

    <...>

   21. #i(midi time 3.125 keynum 67 duration 0.375 amplitude 90 channel 0)



Trying to append them:



  (new seq name 'ger_tr0_ab)

  (events
   (list
    #!ger_tr0_a
    #!ger_tr0_b
    )
   #!ger_tr0_ab
   '(0 3.5))


No reaction from guile (I have to cancel with Ctl-D).

The object Listing also seems to be in a different format (it used to
be with colons between the slots and the slot-values).

Am I missing something?

--
Orm