From 05c451f44e4ad148cf5982e877a6c8ef0c2dc514 Mon Sep 17 00:00:00 2001 From: Patrick Pippen Date: Sun, 23 Mar 2008 12:04:32 -0500 Subject: [PATCH] replaced cons with list* input-handle-key-press-event function: FIXME was replaced with a list* instead of the cons form. --- input.lisp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/input.lisp b/input.lisp index 0268bc0..2f9d08f 100644 --- a/input.lisp +++ b/input.lisp @@ -133,8 +133,8 @@ (defun input-handle-key-press-event (&rest event-slots &key root code state &allow-other-keys) (declare (ignore event-slots root)) - ;; FIXME: don't use a cons - (cons code state)) + ;; FIXED: removed cons + (list* code state)) (defun input-handle-selection-event (&key window selection property &allow-other-keys) (declare (ignore selection)) -- 1.5.3.7