Take the following program: cmucl -eval '(defun foo () (progn (format t "Hello World~%") (foo))) (foo)' What would be the most straight forward way to get CTRL+C to quit back to the shell, as opposed to dumping me into a debugger? I can't find anything in cmucl(1) -A still very new lisper