From: Juho Snellman Date: Sun, 5 Feb 2006 23:14:08 +0000 (+0000) Subject: 0.9.9.15: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2b7e13dc4ec3edeb2986fdfae907ca68b0847f57;p=sbcl.git 0.9.9.15: Make some variables in the code code generated by ALIEN-CALLBACK-LISP-WRAPPER-LAMBDA ignorable to get rid of spurious warnings, as suggested by James Bielman on sbcl-devel "Unused variable warnings in SB-ALIEN::ALIEN-LAMBDA". --- diff --git a/src/code/target-alieneval.lisp b/src/code/target-alieneval.lisp index 8a33628..61aea07 100644 --- a/src/code/target-alieneval.lisp +++ b/src/code/target-alieneval.lisp @@ -797,6 +797,7 @@ ENTER-ALIEN-CALLBACK pulls the corresponsing trampoline out and calls it.") (sb!kernel:get-lisp-obj-address args-pointer))) (res-sap (int-sap (sb!kernel:get-lisp-obj-address result-pointer)))) + (declare (ignorable args-sap res-sap)) (with-alien ,(loop with offset = 0 diff --git a/version.lisp-expr b/version.lisp-expr index 5326c28..aac7543 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.9.14" +"0.9.9.15"