From 2b7e13dc4ec3edeb2986fdfae907ca68b0847f57 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Sun, 5 Feb 2006 23:14:08 +0000 Subject: [PATCH] 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". --- src/code/target-alieneval.lisp | 1 + version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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" -- 1.7.10.4