From: Kevin M. Rosenberg Date: Wed, 12 Mar 2003 21:13:18 +0000 (+0000) Subject: r4190: *** empty log message *** X-Git-Tag: v1.6.1~235 X-Git-Url: http://git.kpe.io/?p=uffi.git;a=commitdiff_plain;h=7257bec0054cabeb29c253942fac968efa0277c4 r4190: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index 7924e70..656f996 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-uffi (1.2.9-1) unstable; urgency=low + + * change ccl:%put-cstring to ccl::%put-cstring for openmcl + + -- Kevin M. Rosenberg Wed, 12 Mar 2003 14:12:03 -0700 + cl-uffi (1.2.8-1) unstable; urgency=low * Change output on compress.lisp example diff --git a/debian/upload.sh b/debian/upload.sh index 2c43417..7ddfa0d 100755 --- a/debian/upload.sh +++ b/debian/upload.sh @@ -1,4 +1,4 @@ #!/bin/bash -e -dup uffi -Uftp.med-info.com -D/home/ftp/uffi -C"(cd /opt/apache/htdocs/uffi.med-info.com; make install)" -su $* +dup uffi -Uftp.med-info.com -D/home/ftp/uffi -C"(cd /opt/apache/htdocs/uffi; make install)" -su $* diff --git a/src/strings.lisp b/src/strings.lisp index 2712a73..8d768e6 100644 --- a/src/strings.lisp +++ b/src/strings.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: strings.lisp,v 1.5 2002/12/13 22:49:09 kevin Exp $ +;;;; $Id: strings.lisp,v 1.6 2003/03/12 21:13:18 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -55,7 +55,7 @@ that LW/CMU automatically converts strings from c-calls." `(if (null ,obj) +null-cstring-pointer+ (let ((ptr (new-ptr (1+ (length ,obj))))) - (ccl:%put-cstring ptr ,obj) + (ccl::%put-cstring ptr ,obj) ptr)) ) @@ -143,7 +143,7 @@ that LW/CMU automatically converts strings from c-calls." `(if (null ,obj) +null-cstring-pointer+ (let ((ptr (new-ptr (1+ (length ,obj))))) - (ccl:%put-cstring ptr ,obj) + (ccl::%put-cstring ptr ,obj) ptr)) )