From 7f3cd207cac41ffb53fa8ca0d4563554e4ef16fa Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 12 Mar 2003 17:01:48 +0000 Subject: [PATCH] r4186: Auto commit for Debian build --- debian/changelog | 6 ++++++ utils.lisp | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f35ec77..89b5604 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (2.3.3-1) unstable; urgency=low + + * New upstream [fixes mcl issue] + + -- Kevin M. Rosenberg Wed, 12 Mar 2003 10:01:25 -0700 + cl-lml (2.3.2-1) unstable; urgency=low * Fix typo in lml-write-char 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))) -- 2.34.1