r4190: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 12 Mar 2003 21:13:18 +0000 (21:13 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 12 Mar 2003 21:13:18 +0000 (21:13 +0000)
debian/changelog
debian/upload.sh
src/strings.lisp

index 7924e701217722a9c34abf546fba16af6a2d97cf..656f99609f94c0695c7dda886e76f41b9d3863fa 100644 (file)
@@ -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 <kmr@debian.org>  Wed, 12 Mar 2003 14:12:03 -0700
+
 cl-uffi (1.2.8-1) unstable; urgency=low
 
   * Change output on compress.lisp example
index 2c43417f2c8f11aa788b10317370c7fd7e36cfdb..7ddfa0d189d5eaf55fc26779a6c9e4d3ca75488b 100755 (executable)
@@ -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 $*
 
index 2712a7355ce3ec389880367aa26d6910119f3759..8d768e62f638311c27cf010a8c756f6bb2c1e96a 100644 (file)
@@ -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))
   )