r4186: Auto commit for Debian build
[lml.git] / utils.lisp
index 8ebcefcb43e0677ad2c89d07190fecdc003d6095..dcd099530255f25c9a00bfa723103499cad1c414 100644 (file)
@@ -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)))