X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=utils.lisp;h=dcd099530255f25c9a00bfa723103499cad1c414;hb=4702caa93dd3157528b62c3befc5f86fdfb7ec5c;hp=8ebcefcb43e0677ad2c89d07190fecdc003d6095;hpb=d37adbea3308d1729d6cf7b23b51dd5d081dc43d;p=lml.git diff --git a/utils.lisp b/utils.lisp index 8ebcefc..dcd0995 100644 --- a/utils.lisp +++ b/utils.lisp @@ -1,4 +1,4 @@ -;;; $Id: utils.lisp,v 1.6 2003/02/15 03:00:22 kevin Exp $ +;;; $Id: utils.lisp,v 1.7 2003/03/12 17:01:48 kevin Exp $ ;;;; ;;;; General purpose utilities @@ -59,7 +59,9 @@ #+lispworks (lw:quit :status code) #+lucid (lcl:quit code) #+sbcl (sb-ext:quit :unix-status (typecase code (number code) (null 0) (t 1))) - #+mcl (ccl:quit code) + #+openmcl (ccl:quit code) + #+(and mcl (not openmcl)) (declare (ignore code)) + #+(and mcl (not openmcl)) (ccl:quit) #-(or allegro clisp cmu scl cormanlisp gcl lispworks lucid sbcl mcl) (error 'not-implemented :proc (list 'quit code)))