aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/interactive/interactive.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interactive/interactive.lisp')
-rw-r--r--src/interactive/interactive.lisp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interactive/interactive.lisp b/src/interactive/interactive.lisp
index 74a22d1..8355329 100644
--- a/src/interactive/interactive.lisp
+++ b/src/interactive/interactive.lisp
@@ -12,8 +12,9 @@
(defun remove-all-handlers (interactive)
(loop
- for type in '(keydown keyup mousedown mouseup mousemotion mousewheel focus blur perframe)
- do (remove-handler interactive type)))
+ :for type
+ :in '(keydown keyup mousedown mouseup mousemotion mousewheel focus blur perframe)
+ :do (remove-handler interactive type)))
(defmethod cleanup :after ((ob interactive))
(remove-all-handlers ob))