Update of /project/rdnzl/cvsroot/RDNZL In directory clnet:/tmp/cvs-serv29294
Modified Files: CHANGELOG.txt port-ccl.lisp port-sbcl.lisp rdnzl.asd util.lisp Log Message: sync with 0.9.5 (plus typo fixes)
--- /project/rdnzl/cvsroot/RDNZL/CHANGELOG.txt 2006/02/18 22:26:12 1.7 +++ /project/rdnzl/cvsroot/RDNZL/CHANGELOG.txt 2006/05/24 21:49:09 1.8 @@ -1,3 +1,7 @@ +Version 0.9.5 +2006-05-24 +Fixed delivery scripts and IMPORT statement for LW + Version 0.9.4 2006-02-18 Fixed LW SINGLE-FLOAT issues (detective work by Dan Muller) --- /project/rdnzl/cvsroot/RDNZL/port-ccl.lisp 2006/02/18 22:26:12 1.5 +++ /project/rdnzl/cvsroot/RDNZL/port-ccl.lisp 2006/05/24 21:49:09 1.6 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/port-ccl.lisp,v 1.5 2006/02/18 22:26:12 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/port-ccl.lisp,v 1.6 2006/05/24 21:49:09 eweitz Exp $
;;; Copyright (c) 2004-2006, Dr. Edmund Weitz. All rights reserved.
@@ -58,7 +58,7 @@
(defun ffi-map-type (type-name) "Maps type names like FFI-INTEGER to their corresponding names in -the LispWorks FLI." +the Corman Lisp FFI." (ecase type-name (ffi-void :void) (ffi-void-pointer '(:void *)) --- /project/rdnzl/cvsroot/RDNZL/port-sbcl.lisp 2006/02/18 22:26:12 1.3 +++ /project/rdnzl/cvsroot/RDNZL/port-sbcl.lisp 2006/05/24 21:49:09 1.4 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/port-sbcl.lisp,v 1.3 2006/02/18 22:26:12 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/port-sbcl.lisp,v 1.4 2006/05/24 21:49:09 eweitz Exp $
;;; Copyright (c) 2004-2006, Dr. Edmund Weitz. All rights reserved.
@@ -55,7 +55,7 @@
(defun ffi-map-type (type-name) "Maps type names like FFI-INTEGER to their corresponding names in -the LispWorks FLI." +the SBCL FFI." (ecase type-name (ffi-void 'sb-alien:void) (ffi-void-pointer 'sb-alien:system-area-pointer) --- /project/rdnzl/cvsroot/RDNZL/rdnzl.asd 2006/02/18 22:26:12 1.6 +++ /project/rdnzl/cvsroot/RDNZL/rdnzl.asd 2006/05/24 21:49:09 1.7 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/rdnzl.asd,v 1.6 2006/02/18 22:26:12 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/rdnzl.asd,v 1.7 2006/05/24 21:49:09 eweitz Exp $
;;; Copyright (c) 2004, Dr. Edmund Weitz. All rights reserved.
@@ -39,7 +39,7 @@
(defsystem #:rdnzl :serial t - :version "0.9.4" + :version "0.9.5" :components ((:file "packages") (:file "specials") (:file "util") --- /project/rdnzl/cvsroot/RDNZL/util.lisp 2006/02/18 22:26:12 1.5 +++ /project/rdnzl/cvsroot/RDNZL/util.lisp 2006/05/24 21:49:09 1.6 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/util.lisp,v 1.5 2006/02/18 22:26:12 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/util.lisp,v 1.6 2006/05/24 21:49:09 eweitz Exp $
;;; Copyright (c) 2004-2006, Dr. Edmund Weitz. All rights reserved.
@@ -32,7 +32,8 @@ (in-package :rdnzl)
#+:lispworks -(import 'lw:with-unique-names) +(eval-when (:compile-toplevel :load-toplevel :execute) + (import 'lw:with-unique-names))
#-:lispworks (defmacro with-unique-names ((&rest bindings) &body body)