From eweitz at common-lisp.net Wed May 24 21:49:09 2006 From: eweitz at common-lisp.net (eweitz) Date: Wed, 24 May 2006 17:49:09 -0400 (EDT) Subject: [rdnzl-cvs] CVS RDNZL Message-ID: <20060524214909.95EF51203F@common-lisp.net> 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) From eweitz at common-lisp.net Wed May 24 21:49:09 2006 From: eweitz at common-lisp.net (eweitz) Date: Wed, 24 May 2006 17:49:09 -0400 (EDT) Subject: [rdnzl-cvs] CVS RDNZL/doc Message-ID: <20060524214909.CBE8519001@common-lisp.net> Update of /project/rdnzl/cvsroot/RDNZL/doc In directory clnet:/tmp/cvs-serv29294/doc Modified Files: index.html Log Message: sync with 0.9.5 (plus typo fixes) --- /project/rdnzl/cvsroot/RDNZL/doc/index.html 2006/02/18 22:26:13 1.7 +++ /project/rdnzl/cvsroot/RDNZL/doc/index.html 2006/05/24 21:49:09 1.8 @@ -372,7 +372,7 @@
 

Download and installation

RDNZL together with this documentation can be downloaded from -http://weitz.de/files/RDNZL.tar.gz, the current version is 0.9.4. It +http://weitz.de/files/RDNZL.tar.gz, the current version is 0.9.5. It doesn't depend on any other Lisp libraries. The C++ source for the shared library RDNZL.dll can be downloaded separately from http://weitz.de/files/RDNZL_cpp.tar.gz but you don't need this archive @@ -1092,7 +1092,7 @@

Thanks to Charles A. Cox for the port of RDNZL to AllegroCL. Thanks to Vasilis Margioulas for the CLISP port. Thanks to Roger Corman for his help with the CCL port. Thanks to Franz Inc. (and particularly Jans Aasman) for supporting the development of RDNZL.

-$Header: /project/rdnzl/cvsroot/RDNZL/doc/index.html,v 1.7 2006/02/18 22:26:13 eweitz Exp $ +$Header: /project/rdnzl/cvsroot/RDNZL/doc/index.html,v 1.8 2006/05/24 21:49:09 eweitz Exp $

BACK TO MY HOMEPAGE From eweitz at common-lisp.net Wed May 24 21:54:20 2006 From: eweitz at common-lisp.net (eweitz) Date: Wed, 24 May 2006 17:54:20 -0400 (EDT) Subject: [rdnzl-cvs] CVS RDNZL/examples Message-ID: <20060524215420.755681030@common-lisp.net> Update of /project/rdnzl/cvsroot/RDNZL/examples In directory clnet:/tmp/cvs-serv29962/examples Modified Files: deliver-acl.lisp deliver-ccl.lisp deliver-lw.lisp Log Message: sync with 0.9.5, part 2 --- /project/rdnzl/cvsroot/RDNZL/examples/deliver-acl.lisp 2006/02/01 12:02:22 1.3 +++ /project/rdnzl/cvsroot/RDNZL/examples/deliver-acl.lisp 2006/05/24 21:54:20 1.4 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-acl.lisp,v 1.3 2006/02/01 12:02:22 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-acl.lisp,v 1.4 2006/05/24 21:54:20 eweitz Exp $ ;;; Copyright (c) 2004-2006, Charles A. Cox. All rights reserved. @@ -62,7 +62,7 @@ :post-load-form '(rdnzl:shutdown-rdnzl) :restart-app-function '(lambda () (rdnzl:init-rdnzl) - (run-apropos-form) + (rdnzl-user::run-apropos-form) (exit))) (win:set-default-command-line-arguments #p"examples/apropos/apropos.exe" --- /project/rdnzl/cvsroot/RDNZL/examples/deliver-ccl.lisp 2006/02/01 12:02:22 1.3 +++ /project/rdnzl/cvsroot/RDNZL/examples/deliver-ccl.lisp 2006/05/24 21:54:20 1.4 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-ccl.lisp,v 1.3 2006/02/01 12:02:22 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-ccl.lisp,v 1.4 2006/05/24 21:54:20 eweitz Exp $ ;;; Copyright (c) 2004-2006, Dr. Edmund Weitz. All rights reserved. @@ -61,7 +61,7 @@ (defun main () (rdnzl:init-rdnzl) - (run-apropos-form) + (rdnzl-user::run-apropos-form) (shutdown-rdnzl)) (rdnzl:shutdown-rdnzl) --- /project/rdnzl/cvsroot/RDNZL/examples/deliver-lw.lisp 2006/02/01 12:02:22 1.4 +++ /project/rdnzl/cvsroot/RDNZL/examples/deliver-lw.lisp 2006/05/24 21:54:20 1.5 @@ -1,5 +1,5 @@ ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: RDNZL; Base: 10 -*- -;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-lw.lisp,v 1.4 2006/02/01 12:02:22 eweitz Exp $ +;;; $Header: /project/rdnzl/cvsroot/RDNZL/examples/deliver-lw.lisp,v 1.5 2006/05/24 21:54:20 eweitz Exp $ ;;; Copyright (c) 2004-2006, Dr. Edmund Weitz. All rights reserved. @@ -65,7 +65,7 @@ (defun run () (rdnzl:init-rdnzl) - (run-apropos-form) + (rdnzl-user::run-apropos-form) 0) (compile 'run)