Skip to content

Commit

Permalink
Renamed *editing-event* to *on-editing-event*
Browse files Browse the repository at this point in the history
  • Loading branch information
BradWBeer committed Apr 4, 2017
1 parent c113e0f commit 6c298dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.lisp
Expand Up @@ -90,7 +90,7 @@
#:*on-controller-axis-move*
#:*on-idle*
#:*on-quit*
#:*text-editing*
#:*on-text-editing*
#:*on-text-input*

#:unload-all-uncollected
Expand Down
4 changes: 2 additions & 2 deletions window.lisp
Expand Up @@ -55,7 +55,7 @@
"Called when a key is pressed. Arguments (win keysym state ts)")
(defparameter *on-key-up* nil
"Called when a key is released. Arguments (win keysym state ts)")
(defparameter *text-editing* nil
(defparameter *on-text-editing* nil
"Called when editing text.")
(defparameter *on-text-input* nil
"Call when text input happens.")
Expand Down Expand Up @@ -281,7 +281,7 @@ working while cepl runs"

(:textediting
(:window-id win :timestamp ts :text text)
(fire *text-editing* win text ts))
(fire *on-text-editing* win text ts))

(:textinput
(:window-id win :timestamp ts :text text)
Expand Down

0 comments on commit 6c298dd

Please sign in to comment.