cl-cookbook icon indicating copy to clipboard operation
cl-cookbook copied to clipboard

scripting.md#For webapps doesn't shut down as expected on CCL

Open vityok opened this issue 7 years ago • 2 comments

It appears that Clozure CL has a different meaning for ccl:interrupt-signal-condition which prevents the code from working on the recent CCL. The fix is suggested here:

(setf ccl:*break-hook* 
  (lambda (cond hook)                              
    (declare (ignore cond hook))
    (format t "Cleaning up ...")
    (ccl:quit)))

vityok avatar Jan 03 '18 12:01 vityok

Is this on OSX or Linux?

pnathan avatar Jan 19 '18 18:01 pnathan

Hi @pnathan,

it is on Ubuntu. But I suspect that this applies to other systems as well.

With best regards

vityok avatar Jan 22 '18 12:01 vityok