X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/206938929975b23a22f153937270fa8e2508ecc0..e37c4285b808a73f6bea3c86cc3b9a38657d9d54:/glib/ffi.lisp diff --git a/glib/ffi.lisp b/glib/ffi.lisp index 267da64..64ec4fc 100644 --- a/glib/ffi.lisp +++ b/glib/ffi.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: ffi.lisp,v 1.11 2004/12/28 20:27:52 espen Exp $ +;; $Id: ffi.lisp,v 1.12 2005/01/03 16:35:05 espen Exp $ (in-package "GLIB") @@ -103,11 +103,11 @@ (not supplied-lambda-list) (namep expr) (member style '(:in :in-out :return))) (push expr lambda-list)) - (push - (list (if (namep expr) - (make-symbol (string expr)) - (gensym)) - expr (mklist type) style) args))))) + (push (list (cond + ((and (namep expr) (eq style :out)) expr) + ((namep expr) (make-symbol (string expr))) + ((gensym))) + expr (mklist type) style) args))))) (%defbinding c-name lisp-name (or supplied-lambda-list (nreverse lambda-list))