Thanks..

Rick Taube hkt@zkm.de
Wed, 28 Sep 94 12:22:21 GMT+0100


>*** - DEFCLASS: Cannot redefine class CSOUND-SCORE-FILE
>1. Break>

this is a typo bug in stella/csound.lisp that i introduced by  
copy-pasting. the problem is that there are now 2 definitions of that  
class and for some reason this gets clisp so nervous that it breaks.  
The version you want is this one:

(defclass csound-score-file (event-file header-mixin)
  ((orchestra :initarg orchestra :initform nil)
   (output :initarg output :initform nil)
   (syntax :initform (find-syntax ':csound))))

The fix is to delete the other one, then recompile the file an  
rebuild the system. this bug has already been fixed in my sources .im  
currently in the middle of an algoritmic compositino workshop ans the  
participants have already uncovered 2 more bugs so ill wait till the  
dust settles before putting new a new cm on the server -- probably   
in about 2 weeks.

	-hkt