From: espen Date: Thu, 10 May 2007 20:25:30 +0000 (+0000) Subject: Got rid of warning X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/1d0b5a6c850b1acfabb82b0c1d42bfeb91db7df4 Got rid of warning --- diff --git a/glib/gobject.lisp b/glib/gobject.lisp index 1b47b0a..6543d2d 100644 --- a/glib/gobject.lisp +++ b/glib/gobject.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gobject.lisp,v 1.55 2007-02-19 13:49:15 espen Exp $ +;; $Id: gobject.lisp,v 1.56 2007-05-10 20:25:30 espen Exp $ (in-package "GLIB") @@ -154,7 +154,7 @@ (defmethod compute-slot-writer-function :around ((slotd effective-property-slot-definition)) (if (construct-only-property-p slotd) #'(lambda (value object) - (declare (ignore value object)) + (declare (ignore value)) (unless *ignore-setting-construct-only-property* (error 'unwritable-slot :name (slot-definition-name slotd) :instance object))) (call-next-method)))