r3631: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 15 Dec 2002 17:11:08 +0000 (17:11 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 15 Dec 2002 17:11:08 +0000 (17:11 +0000)
debian/changelog
src/primitives.lisp

index 909f9d2f68043c16d68924455f6c99d04d1b2569..df12f9e0f14f27c64477718fa6914e8619617d8b 100644 (file)
@@ -1,3 +1,9 @@
+cl-uffi (1.2.4-1) unstable; urgency=low
+
+  * Fix syntax error from last version
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 13 Dec 2002 18:54:41 -0700
+
 cl-uffi (1.2.3-1) unstable; urgency=low
 
   * More external format changes for lispworks (thanks Marc Battyani)
index 06dd03058dbf800194cc61084781a60d6e290924..03530669ff87ed7cfc31f3756d07f6f9445bd769 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: primitives.lisp,v 1.7 2002/12/13 22:49:09 kevin Exp $
+;;;; $Id: primitives.lisp,v 1.8 2002/12/15 17:11:08 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -180,11 +180,11 @@ supports takes advantage of this optimization."
       (:short . :short)
       (:pointer-void . (:pointer :void))
       (:cstring . (:reference-pass (:ef-mb-string :external-format
-                                                 (:latin-1 :eol-style :lf)
-                                                 :allow-null t))
+                                   (:latin-1 :eol-style :lf))
+                  :allow-null t))
       (:cstring-returning . (:reference (:ef-mb-string :external-format
-                                                      (:latin-1 :eol-style :lf)
-                                                      :allow-null t))
+                                        (:latin-1 :eol-style :lf))
+                            :allow-null t))
       (:byte . :byte)
       (:unsigned-byte . (:unsigned :byte))
       (:char . :char)