From 945326ed8a383fb7075eb5c7bd800cee520be325 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Tue, 16 Sep 1997 08:44:55 +0000 Subject: [PATCH] The arguments to the boolean deport method were backwards causing it to always deport 1. --- code/alieneval.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/alieneval.lisp b/code/alieneval.lisp index 5f13a8ad8..4ecc4e3ad 100644 --- a/code/alieneval.lisp +++ b/code/alieneval.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.40 1997/08/24 03:15:48 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.41 1997/09/16 08:44:55 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -668,7 +668,7 @@ (declare (ignore type)) `(not (zerop ,alien))) -(def-alien-type-method (boolean :deport-gen) (value type) +(def-alien-type-method (boolean :deport-gen) (type value) (declare (ignore type)) `(if ,value 1 0)) -- GitLab