From: espen Date: Sat, 29 Dec 2007 19:21:26 +0000 (+0000) Subject: Fixed wrong initarg in GLIB-ERROR definition X-Git-Tag: clg-0-93~38 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/98e05b89e522ca06b4bdcac173aea05eb35e9b4a?hp=824e0c2e9db85cd2ede990450ad55b9f3fade96a Fixed wrong initarg in GLIB-ERROR definition --- diff --git a/glib/gerror.lisp b/glib/gerror.lisp index e12edbe..c690a5e 100644 --- a/glib/gerror.lisp +++ b/glib/gerror.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gerror.lisp,v 1.8 2007/09/07 07:32:26 espen Exp $ +;; $Id: gerror.lisp,v 1.9 2007/12/29 19:21:26 espen Exp $ (in-package "GLIB") @@ -40,7 +40,7 @@ (defbinding (%gerror-free "g_error_free") () nil (location pointer)) (define-condition glib-error (error) - ((code :initarg :domain :reader gerror-code) + ((code :initarg :code :reader gerror-code) (message :initarg :message :reader gerror-message)) (:report (lambda (condition stream) (write-string (gerror-message condition) stream))))