Skip to content

Commit

Permalink
don't put a default of t for tk-doevent's block arg
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Feb 5, 2009
1 parent df2b5a5 commit 37fe5a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base.lisp
Expand Up @@ -56,7 +56,7 @@
(defun destroy () (tk-destroy *tk*))
(defun alive-p () (tk-alive-p *tk*))

(defgeneric tk-doevent (tk &optional (block t)))
(defgeneric tk-doevent (tk &optional block))
(defun doevent (&optional block) (tk-doevent *tk* block))
(defun doevents () (loop :while (doevent)))
(defun mainloop ()
Expand Down

0 comments on commit 37fe5a8

Please sign in to comment.