Re: SLIME vs Deliver anyone?
Thanks to everyone who replied - problem solved. I changed (eval-when (:compile-toplevel :load-toplevel :execute) (require "comm")) to (eval-when (:compile-toplevel) (require "com")) in SLIME's swank-lispworks.lisp, moved (require "comm") to my deliver.lisp, recompiled SLIME, delivered, and it worked! Thanks again - Lisp is way cool. -K. tarvydas wrote: > On December 9, 2004 11:09 am, Klaus Harbo wrote: > >> ERROR: REQUIRE called in delivery time with module twoway-stream. >> >>I am not sure how to pursue this problem and wonder if anyone on the list >>might have ideas? > > > A wild and uneducated guess: the error message seems to indicate that all > REQUIRE's need to be performed before deliver is called. This makes me think > that you have a REQUIRE inside the code that you are delivering. > > Try removing the REQUIRE's from the code and move those REQUIRE's to the > deliver.lisp code, for example: > > (load-all-patches) > (require "blah") > (load "myprog") > (deliver ... > > ? > > pt >