diff options
author | Colin Okay <colin@cicadas.surf> | 2022-06-25 06:59:37 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-06-25 06:59:37 -0500 |
commit | 0710c2fd30745c7b1e26e9934383d997f298c3fb (patch) | |
tree | f3840d66e960320293c1bc241b4df0df20c8d2e4 /wheelwork.lisp | |
parent | c53145d0d347b5306a1a6cb547c7ea0d3772778b (diff) |
[modify] s/defconstant/defparameter b/c it was annoying
Diffstat (limited to 'wheelwork.lisp')
-rw-r--r-- | wheelwork.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wheelwork.lisp b/wheelwork.lisp index ccb38cb..52f0eb0 100644 --- a/wheelwork.lisp +++ b/wheelwork.lisp @@ -227,7 +227,7 @@ necessary." (:documentation "Clean up applications, textures, and so on.") (:method ((any t)) nil)) -(defconstant +listener-table-slot-names+ +(defparameter +listener-table-slot-names+ '(keydown-table keyup-table mousedown-table mouseup-table mousemotion-table focus-table blur-table perframe-table after-added-table before-added-table before-dropped-table)) |