X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=base%2Fcmucl-compat.lisp;h=d285788121f222fdde3d206690e560deab3cfb9a;hp=61b9ad089a12bf1a55d1c75c54ce0eb7662426aa;hb=ce0e343835a040406678dff74a62d1b0cb56f317;hpb=edd1963395a5b5e5f91ef975fcd329975ae367e2 diff --git a/base/cmucl-compat.lisp b/base/cmucl-compat.lisp index 61b9ad0..d285788 100644 --- a/base/cmucl-compat.lisp +++ b/base/cmucl-compat.lisp @@ -2,23 +2,23 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: cmucl-compat.sql +;;;; Name: cmucl-compat.lisp ;;;; Purpose: Compatiblity library for CMUCL functions ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; ;;;; $Id$ ;;;; -;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; This file, part of CLSQL, is Copyright (c) 2002-2004 by Kevin M. Rosenberg ;;;; ;;;; CLSQL users are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser GNU Public License ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(in-package :cl-user) +(in-package #:cl-user) -(defpackage :cmucl-compat +(defpackage #:cmucl-compat (:use #:common-lisp) (:export #:shrink-vector @@ -26,7 +26,7 @@ #:result-type-or-lose #:required-argument )) -(in-package :cmucl-compat) +(in-package #:cmucl-compat) #+(or cmu scl) (defmacro required-argument () @@ -79,7 +79,7 @@ Needs to be a macro to overwrite value of VEC." (defun make-sequence-of-type (type len) (lisp::make-sequence-of-type type len)) (defun make-sequence-of-type (type len) - (system::make-sequence-of-type type len))) + (common-lisp::make-sequence-of-type type len))) #-(or cmu scl) (defun result-type-or-lose (type nil-ok)