Re: Last minute fixes to the go bindings

2012-05-10 Thread Justus Winter
Quoting Austin Clements (2012-05-09 20:07:00) LGTM. Quoth Justus Winter on May 09 at 12:23 pm: Hi everyone :) this is a small patch series that I'd like to see included in 0.13. The first patch updates notmuch-addrlookup with respect to Austins recent change of the

Re: Last minute fixes to the go bindings

2012-05-10 Thread David Bremner
Justus Winter 4win...@informatik.uni-hamburg.de writes: @David: what do you think about merging this patch set? Yeah, unless I am convinced otherwise, I will merge for the next release candidate. d ___ notmuch mailing list notmuch@notmuchmail.org

[PATCH] ruby: extern linkage portability improvement

2012-05-10 Thread Tomi Ollila
Some C compilers are stricter when it comes to (tentative) definition of a variable -- in those compilers introducing variable without 'extern' keyword always allocates new 'storage' to the variable and linking all these modules fails due to duplicate symbols. This change uses some macro trickery

Last minute fixes to the go bindings

2012-05-10 Thread Justus Winter
Quoting Austin Clements (2012-05-09 20:07:00) > LGTM. > > Quoth Justus Winter on May 09 at 12:23 pm: > > Hi everyone :) > > > > this is a small patch series that I'd like to see included in 0.13. > > > > The first patch updates notmuch-addrlookup with respect to Austins > > recent change of the

Last minute fixes to the go bindings

2012-05-10 Thread David Bremner
Justus Winter <4winter at informatik.uni-hamburg.de> writes: > @David: what do you think about merging this patch set? Yeah, unless I am convinced otherwise, I will merge for the next release candidate. d

[PATCH] ruby: extern linkage portability improvement

2012-05-10 Thread Tomi Ollila
Some C compilers are stricter when it comes to (tentative) definition of a variable -- in those compilers introducing variable without 'extern' keyword always allocates new 'storage' to the variable and linking all these modules fails due to duplicate symbols. This change uses some macro trickery