Csound Csound-dev Csound-tekno Search About

Cecilia startup error

Date1997-06-08 02:57
FromGregory Boduch
SubjectCecilia startup error
Hello, 

I'm getting the following error while trying to start 'xcec*'
(Cecilia/Linux):

  invalid command name "doCecilia"
    while executing
"doCecilia $arr"
    (file "/usr/local/bin/xcec" line 15)


Here are the full contents of xcec*:

 #!/usr/bin/wish

 proc loadSourceFiles {} {
 global env ceclib
    set ceclib $env(CEC_LIBRARY)
    foreach item [glob -nocomplain -- $ceclib/dev/*.tcl] { source $item} 
 }

 if ![info exists tcload] {loadSourceFiles}
 if {[llength $argv] > 0} {
     set arr $argv
 } else {
     set arr ""
 }
 doCecilia $arr


I'd appreciate any help.

Thanks,

GB