From: Hao Zhang
Subject: catch stack overflow in clisp
Date: 
Message-ID: <381BFCB6.41C67EA6@its.caltech.edu>
Hi all,
       I am using clisp (by Bruno Haible) under
NetBSD. Does anyone know how to catch
stack overflow gracefully?

	I have tried:

(defun f() (f))

(ignore-errors (f)) 
(handle-case (f) (condition (c) c))

         But I didn't figure out how to use 
(restart-case). Is that a possible solution?

thanks for your time,

--- Hao