r5498: *** empty log message ***
[uffi.git] / src / objects.lisp
index 26d16728715b99bafdcb983d90300db3ce141cd6..4d86f1a21c4cb1b60a3187bf74aea4a26428025b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: objects.lisp,v 1.17 2003/08/14 21:40:13 kevin Exp $
+;;;; $Id: objects.lisp,v 1.18 2003/08/14 21:58:29 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -231,8 +231,8 @@ an array of TYPE with size SIZE. The TYPE parameter is evaluated."
 (defmacro def-foreign-var (names type module)
   #-lispworks (declare (ignore module))
   (let ((foreign-name (if (atom names) names (first names)))
-        (lisp-name (if (atom names) (uffi::make-lisp-name names) (second names)))
-        (var-type (uffi::convert-from-uffi-type type :foreign-var)))
+        (lisp-name (if (atom names) (make-lisp-name names) (second names)))
+        (var-type (convert-from-uffi-type type :foreign-var)))
     #+(or cmu scl)
     `(alien:def-alien-variable (,foreign-name ,lisp-name) ,var-type)
     #+sbcl