From 04b9dd33bd3a19781998caa959feb926c1fbfe5f Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 23 Nov 2002 19:07:11 +0000 Subject: [PATCH] r3462: another allegro bug fix --- debian/changelog | 6 ++++++ src/aggregates.lisp | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 79e9f4d..36e8077 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-uffi (1.1.7.1-1) unstable; urgency=low + + * Another allegro bug (Thanks Matthew Danish) + + -- Kevin M. Rosenberg Sat, 23 Nov 2002 12:06:40 -0700 + cl-uffi (1.1.7-1) unstable; urgency=low * bug fixes on allegro diff --git a/src/aggregates.lisp b/src/aggregates.lisp index 848b735..e22f22b 100644 --- a/src/aggregates.lisp +++ b/src/aggregates.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: aggregates.lisp,v 1.4 2002/10/16 11:56:43 kevin Exp $ +;;;; $Id: aggregates.lisp,v 1.5 2002/11/23 19:07:11 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -163,7 +163,7 @@ of the enum-name name, separator-string, and field-name" #+(or cmu scl) `(alien:deref ,obj ,i) #+sbcl `(sb-alien:deref ,obj ,i) #+lispworks `(fli:dereference ,obj :index ,i) - #+allegro `(ff:fslot-value-typed (quote ,(convert-from-uffi-type type :type)) :c ,obj ,i) + #+allegro `(ff:fslot-value-typed (quote (convert-from-uffi-type ,type :type)) :c ,obj ,i) #+mcl (let* ((array-type (array-type type)) (local-type (convert-from-uffi-type array-type :allocation)) -- 2.34.1