crategus / cl-cffi-gtk

cl-cffi-gtk is a Lisp binding to the GTK+ 3 library.
http://www.crategus.com/books/cl-cffi-gtk
146 stars 33 forks source link

typo in export of g-signal-stop-emission #32

Closed plops closed 9 years ago

plops commented 9 years ago

There is a typo in gobject.signals.lisp. The wrong function name is exported. I fixed it for me in this commit: https://github.com/plops/cl-cffi-gtk/commit/27cb11e125dbfff1e8903b058c424653b1effae9

(defcfun ("g_signal_stop_emission" g-signal-stop-emission) :void
  (instance :pointer)
  (signal-id :uint)
  (detail g-quark))

(export 'g-signal-stop-emission)
crategus commented 9 years ago

Thank you very much. I have corrected the typo.