LispCookbook / LispCookbook/cl-cookbook
scripting.md#For webapps doesn't shut down as expected on CCL
Open
Nobody has claimed this yet.
bug
- Dominant language
- JavaScript
- Stars
- 1.1k
- Forks
- 158
- Avg merge
- 6d 3h
- Merged PRs (30d)
- 2
Description
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)))
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open scripting.md at the “For webapps” section and compare its shutdown handling with the CCL behavior described here. Review the linked Stack Overflow suggestion, then verify that the documented example shuts down as expected on recent CCL.
Written by the indexing model from the issue text.
Assessment
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 45/100