Re: [CM] partial tracking and sinusoidal modeling

2016-12-07 Thread Orm Finnendahl
Am Donnerstag, den 08. Dezember 2016 um 04:52:21 Uhr (+0100) schrieb Orm Finnendahl: > In that context: Does anybody have a working common lisp (preferably > sbcl) based CLM and can point me to sources where to obtain it? Got that part figured out: I found the cl clm-4 sources and they compiled

[CM] partial tracking and sinusoidal modeling

2016-12-07 Thread Orm Finnendahl
Hi, I'm trying to use some open source partial tracking/sinusoidal modeling tools working on linux. It's a somewhat dated procedure and it seems there aren't many sources available. I found the lisp based ATS system by Juam Pampin (https://ccrma.stanford.edu/~juan/ATS_manual.html) which relies

Re: [CM] s7: warning if symbol is redefined and namespaces

2016-12-07 Thread bil
load has a second argument, the environment to load into, which defaults to the root environment, so (let () (load "file.scm" (curlet)) will place the top-level defines in file.scm into the local environment. Similarly eval has an environment argument. I think that s7 currently doesn't

Re: [CM] s7: warning if symbol is redefined and namespaces

2016-12-07 Thread Kjetil Matheussen
On Wed, Dec 7, 2016 at 1:25 PM, wrote: > load has a second argument, the environment to load into, > which defaults to the root environment, so > > (let () > (load "file.scm" (curlet)) > > will place the top-level defines in file.scm into > the local environment.

[CM] s7: warning if symbol is redefined and namespaces

2016-12-07 Thread Kjetil Matheussen
Hi Bill, I'm starting to get a bit worried about overriding global symbols without noticing it. Is there a way to get a message printed to the screen, or maybe create a hook for doing so, if a symbol is redefined? Also, what about namespaces and workarounds? For instances, Is there a way to