r4186: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 12 Mar 2003 17:01:48 +0000 (17:01 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 12 Mar 2003 17:01:48 +0000 (17:01 +0000)
debian/changelog
utils.lisp

index f35ec77a608b7eb8a46160b39608c5bb27266294..89b56043d1fe25e54beeb1379241be4d0122d974 100644 (file)
@@ -1,3 +1,9 @@
+cl-lml (2.3.3-1) unstable; urgency=low
+
+  * New upstream [fixes mcl issue]
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Wed, 12 Mar 2003 10:01:25 -0700
+
 cl-lml (2.3.2-1) unstable; urgency=low
 
   * Fix typo in lml-write-char
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)))