From 13d598e5e7f26bc6177ae3f7d52f4f19729ab2f3 Mon Sep 17 00:00:00 2001 From: "Andrew Gallant (Ocelot)" Date: Mon, 7 May 2012 21:58:33 -0400 Subject: more clean up. use log instead of fmt.Print to stderr. bug fix for event blocking (a hack fix for now). --- nexgb/auto_xtest.go | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'nexgb/auto_xtest.go') diff --git a/nexgb/auto_xtest.go b/nexgb/auto_xtest.go index 565c3d1..8a43878 100644 --- a/nexgb/auto_xtest.go +++ b/nexgb/auto_xtest.go @@ -1,7 +1,7 @@ package xgb /* - This file was generated by xtest.xml on May 6 2012 5:48:48pm EDT. + This file was generated by xtest.xml on May 7 2012 9:17:58pm EDT. This file is automatically generated. Edit at your peril! */ @@ -16,7 +16,7 @@ func (c *Conn) XtestInit() error { case err != nil: return err case !reply.Present: - return newError("No extension named XTEST could be found on on the server.") + return errorf("No extension named XTEST could be found on on the server.") } c.extLock.Lock() @@ -24,6 +24,9 @@ func (c *Conn) XtestInit() error { for evNum, fun := range newExtEventFuncs["XTEST"] { newEventFuncs[int(reply.FirstEvent)+evNum] = fun } + for errNum, fun := range newExtErrorFuncs["XTEST"] { + newErrorFuncs[int(reply.FirstError)+errNum] = fun + } c.extLock.Unlock() return nil @@ -31,10 +34,9 @@ func (c *Conn) XtestInit() error { func init() { newExtEventFuncs["XTEST"] = make(map[int]newEventFun) + newExtErrorFuncs["XTEST"] = make(map[int]newErrorFun) } -// Skipping definition for base type 'Bool' - // Skipping definition for base type 'Float' // Skipping definition for base type 'Id' @@ -59,6 +61,8 @@ func init() { // Skipping definition for base type 'Double' +// Skipping definition for base type 'Bool' + const ( XtestCursorNone = 0 XtestCursorCurrent = 1 -- cgit v1.2.3