Re: [CM] snd inf-snd.el: multiple lines

2014-12-21 Thread Bill Schottstaedt
Hmmm, it would be nice to have a way to interrupt a currently running calculation from emacs (or sound playback). ctrl-g does not seem to have the same effect that it has in snd. And a double ctrl-c in the scheme buffer causes the interpreter to quit. To interrupt the s7 evaluator, you

Re: [CM] snd inf-snd.el: multiple lines

2014-12-20 Thread Fernando Lopez-Lezcano
On 12/18/2014 06:07 PM, Fernando Lopez-Lezcano wrote: On 12/18/2014 09:56 AM, Bill Schottstaedt wrote: I changed the no-gui repl (if not using readline) to wait for a complete expression (in the current tarball, not in 15.2). Thanks Bill (and all others)! The latest tarball seems to be

Re: [CM] snd inf-snd.el: multiple lines

2014-12-18 Thread Bill Schottstaedt
I changed the no-gui repl (if not using readline) to wait for a complete expression (in the current tarball, not in 15.2). ___ Cmdist mailing list Cmdist@ccrma.stanford.edu http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist

Re: [CM] snd inf-snd.el: multiple lines

2014-12-18 Thread Fernando Lopez-Lezcano
On 12/18/2014 09:56 AM, Bill Schottstaedt wrote: I changed the no-gui repl (if not using readline) to wait for a complete expression (in the current tarball, not in 15.2). Thanks Bill (and all others)! The latest tarball seems to be working fine! I configured it like this: ./configure

Re: [CM] snd inf-snd.el: multiple lines

2014-12-17 Thread Bill Schottstaedt
Thanks very much! There must be a way to do the same thing as XtAppAddInput or g_io_add_watch_full in the no-gui case. I'll add it to my TODO list. It also should be possible in inf-snd.el to recognize the no-gui case (*features* won't include 'gtk or 'motif, I think), so your work-around could

Re: [CM] snd inf-snd.el: multiple lines

2014-12-17 Thread Bill Schottstaedt
I think Snd (or s7?) needs a --with-s7webserver configuration switch -- besides the xen.c change do I need to add any others? ___ Cmdist mailing list Cmdist@ccrma.stanford.edu http://ccrma-mail.stanford.edu/mailman/listinfo/cmdist

Re: [CM] snd inf-snd.el: multiple lines

2014-12-17 Thread Kjetil Matheussen
Sorry, not so simple. The s7webserver runs in the qt event loop. So you have to compile snd with qtnetwork support, and call qcore:processevents (or something like that) very often. Bill's suggestion is likely to be less work. On Wed, Dec 17, 2014 at 5:25 PM, Kjetil Matheussen

Re: [CM] snd inf-snd.el: multiple lines

2014-12-17 Thread Kjetil Matheussen
I guess a --s7webserver-portnumber switch would be useful too. But as I wrote, it's more work than just calling the init function. I'll see if I can make a patch later for snd. On Wed, Dec 17, 2014 at 5:32 PM, Bill Schottstaedt b...@ccrma.stanford.edu wrote: I think Snd (or s7?) needs a