[PATCH 4/5] fixed more wrongly initialized constants

2015-06-01 Thread laochailan
In Go, '= 0' at the beginning means everything is set to zero. --- bindings/go/src/notmuch/notmuch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index 741fabf..d664287 100644 --- a/bindings/go/src

[PATCH 3/5] formatted comments for better godoc output

2015-06-01 Thread laochailan
before it looked like this http://godoc.org/github.com/notmuch/notmuch/bindings/go/src/notmuch#Database.RemoveMessage --- bindings/go/src/notmuch/notmuch.go | 1325 +--- 1 file changed, 632 insertions(+), 693 deletions(-) diff --git a/bindings/go/src/notmuch/notmuc

[PATCH 5/5] updated NEWS

2015-06-01 Thread laochailan
--- NEWS | 14 ++ 1 file changed, 14 insertions(+) diff --git a/NEWS b/NEWS index eeaf0d4..4434f4e 100644 --- a/NEWS +++ b/NEWS @@ -262,6 +262,20 @@ Python Bindings Add support for `notmuch_query_add_tag_exclude` +Go Bindings +--- + +Add support for `notmuch_threads_t` an

[PATCH 2/5] fixed wrong constant values

2015-06-01 Thread laochailan
before, they were both zero, so getting a read-writeable handle was impossible. --- bindings/go/src/notmuch/notmuch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index a0b901f..bffc120 100644 --- a/bi

[PATCH 0/5] Additions to Go bindings

2015-06-01 Thread laochailan
: http://godoc.org/github.com/notmuch/notmuch/bindings/go/src/notmuch#Message.RemoveTag and after the changes: http://godoc.org/github.com/laochailan/notmuch/bindings/go/src/notmuch#Message.RemoveTag laochailan (5): Added thread bindings to go bindings fixed wrong constant values formatted

[PATCH 1/5] Added thread bindings to go bindings

2015-06-01 Thread laochailan
--- bindings/go/src/notmuch/notmuch.go | 262 - 1 file changed, 260 insertions(+), 2 deletions(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index 0fff1ab..a0b901f 100644 --- a/bindings/go/src/notmuch/notmuch.go +++ b/

[PATCH 5/5] updated NEWS

2015-05-31 Thread laochailan
--- NEWS | 14 ++ 1 file changed, 14 insertions(+) diff --git a/NEWS b/NEWS index eeaf0d4..4434f4e 100644 --- a/NEWS +++ b/NEWS @@ -262,6 +262,20 @@ Python Bindings Add support for `notmuch_query_add_tag_exclude` +Go Bindings +--- + +Add support for `notmuch_threads_t` and

[PATCH 4/5] fixed more wrongly initialized constants

2015-05-31 Thread laochailan
In Go, '= 0' at the beginning means everything is set to zero. --- bindings/go/src/notmuch/notmuch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index 741fabf..d664287 100644 --- a/bindings/go/src

[PATCH 3/5] formatted comments for better godoc output

2015-05-31 Thread laochailan
before it looked like this http://godoc.org/github.com/notmuch/notmuch/bindings/go/src/notmuch#Database.RemoveMessage --- bindings/go/src/notmuch/notmuch.go | 1325 +--- 1 file changed, 632 insertions(+), 693 deletions(-) diff --git a/bindings/go/src/notmuch/notmuc

[PATCH 2/5] fixed wrong constant values

2015-05-31 Thread laochailan
before, they were both zero, so getting a read-writeable handle was impossible. --- bindings/go/src/notmuch/notmuch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index a0b901f..bffc120 100644 --- a/bi

[PATCH 1/5] Added thread bindings to go bindings

2015-05-31 Thread laochailan
--- bindings/go/src/notmuch/notmuch.go | 262 - 1 file changed, 260 insertions(+), 2 deletions(-) diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go index 0fff1ab..a0b901f 100644 --- a/bindings/go/src/notmuch/notmuch.go +++ b/

[PATCH 0/5] Additions to Go bindings

2015-05-31 Thread laochailan
: http://godoc.org/github.com/notmuch/notmuch/bindings/go/src/notmuch#Message.RemoveTag and after the changes: http://godoc.org/github.com/laochailan/notmuch/bindings/go/src/notmuch#Message.RemoveTag laochailan (5): Added thread bindings to go bindings fixed wrong constant values formatted