[Chicken-users] reload .so in csi?

2011-07-01 Thread David N Murray
Hi all, I run csi inside emacs. I have a .so file that occasionally needs to be updated. Is there a way to reload the .so after I re-make it, without having to exit csi? I've tried use, import, require-extension, and ,l the.so. It never picks up my changes. The only reliable solution is to

Re: [Chicken-users] reload .so in csi?

2011-07-01 Thread Mario Domenech Goulart
Hi David, On Fri, 01 Jul 2011 10:40:36 -0400 (EDT) David N Murray dmur...@jsbsystems.com wrote: I run csi inside emacs. I have a .so file that occasionally needs to be updated. Is there a way to reload the .so after I re-make it, without having to exit csi? I've tried use, import,

Re: [Chicken-users] reload .so in csi?

2011-07-01 Thread Christian Kellermann
* David N Murray dmur...@jsbsystems.com [110701 18:28]: Hi all, I run csi inside emacs. I have a .so file that occasionally needs to be updated. Is there a way to reload the .so after I re-make it, without having to exit csi? I've tried use, import, require-extension, and ,l the.so. It

Re: [Chicken-users] reload .so in csi?

2011-07-01 Thread Jim Ursetto
On Jul 1, 2011, at 1:38 PM, Christian Kellermann wrote: A convenient way is to define a system comprising your source for the .so with the system egg (http://api.call-cc.org/doc/system). This uses the compile-file procedure to create a new .so name each time it is compiled. That is probably

Re: [Chicken-users] reload .so in csi?

2011-07-01 Thread David N Murray
On Jul 1, Jim Ursetto scribed: On Jul 1, 2011, at 1:38 PM, Christian Kellermann wrote: A convenient way is to define a system comprising your source for the .so with the system egg (http://api.call-cc.org/doc/system). This uses the compile-file procedure to create a new .so name each time