cl-cookbook
cl-cookbook copied to clipboard
scripting.md#For webapps doesn't shut down as expected on CCL
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)))
Is this on OSX or Linux?
Hi @pnathan,
it is on Ubuntu. But I suspect that this applies to other systems as well.
With best regards