r5406: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 30 Jul 2003 17:32:26 +0000 (17:32 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 30 Jul 2003 17:32:26 +0000 (17:32 +0000)
io.lisp
mop.lisp

diff --git a/io.lisp b/io.lisp
index 2d4f3da1aa18405d74beb0fa5ac772482a0be1cc..19002048f5d5554f406ddab4355b58d13f8a2ffe 100644 (file)
--- a/io.lisp
+++ b/io.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: io.lisp,v 1.11 2003/07/14 04:10:02 kevin Exp $
+;;;; $Id: io.lisp,v 1.12 2003/07/30 17:32:26 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 
 (defun null-output-stream ()
   (when (probe-file #p"/dev/null")
-    (open #p"/dev/null" :direction :output :if-exists :supersede)))
+    (open #p"/dev/null" :direction :output :if-exists :overwrite)))
index a274f48991fbdab1c65d777f8e7efbefd171b904..ff4d2179bd84167bbbb0d9d035759574f5b63b6d 100644 (file)
--- a/mop.lisp
+++ b/mop.lisp
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2003
 ;;;;
-;;;; $Id: mop.lisp,v 1.16 2003/06/25 20:11:54 kevin Exp $
+;;;; $Id: mop.lisp,v 1.17 2003/07/30 17:32:26 kevin Exp $
 ;;;;
 ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -44,7 +44,9 @@
    #+lispworks #:clos
    #+scl #:clos
    #+openmcl #:openmcl-mop
-   ))
+   )
+  #+openmcl (:shadowing-import-from #:ccl #:ensure-generic-function)
+  )
 
 (in-package #:kmr-mop)