[PATCH] cli: change "setup" to "set up" where used as a verb

2015-05-31 Thread David Bremner
"J. Lewis Muir" writes: > The word "setup" is a noun, not a verb. Change occurrences of "setup" > where used as a verb to "set up". > > --- pushed d

[PATCH] emacs: Added "is:" style completion to notmuch-read-query.

2015-05-31 Thread David Bremner
David Bremner writes: > From: Charles Celerier > > The notmuch-search-terms man page states that "tag:" is equivalent > to "is:". Completion for "is:" style searches is now supported > in the Emacs interface. > > Amended by David Bremner: combine lexical-let and let into > lexical-let* Pushed.

[PATCH] test: remove redundant 'file' command from gdb scripts.

2015-05-31 Thread David Bremner
Quoting Debian bug 787341 It failed to build on arm64: the last ten tests in T070-insert failed. What's happening here is that GDB is segfaulting in response to the "file" command. GDB on arm64 can be a bit buggy. However, the "file" command is redundant here as GDB has

[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 ---

[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

[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 ---

[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 +++

[PATCH 0/5] Additions to Go bindings

2015-05-31 Thread laochailan
I added bindings for thread lists and thread to the Go bindings and fixed some wrong constant values. Before, the comment style was not understood well by the automatic documentation generator of Go, so I converted the documentation comments to the // style. Compare the documentation before:

bug report: Emacs notmuch-mode fails attachments with spaces

2015-05-31 Thread Nils Dagsson Moskopp
can see the following trace: >> >> --- snib --- >> execve("/usr/bin/zathura", ["/usr/bin/zathura", "/tmp/emm.23178ut2/2015\\", >> "_\\", "Richtlinien.pdf"] [/* 51 vars */]) = 0 >> --- snab --- >> >> Somewhat unusually, it is preceeded by an invocation of the shell: >> >> --- sneb --- >> execve("/usr/bin/rc", ["/usr/bin/rc", "-c", "/usr/bin/zathura >> /tmp/emm.23178u"...], [/* 51 vars */] > > It would be useful to see the rest of this string ^^. Can you persuade > strace to show more please? I have no idea how. Do you? -- Nils Dagsson Moskopp // erlehmann <http://dieweltistgarnichtso.net> -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 212 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20150531/d0502569/attachment.sig>

Re: [PATCH] emacs: Added is:tag style completion to notmuch-read-query.

2015-05-31 Thread David Bremner
David Bremner da...@tethera.net writes: From: Charles Celerier ccel...@cs.stanford.edu The notmuch-search-terms man page states that tag:tag is equivalent to is:tag. Completion for is:tag style searches is now supported in the Emacs interface. Amended by David Bremner: combine lexical-let

Re: [PATCH] cli: change setup to set up where used as a verb

2015-05-31 Thread David Bremner
J. Lewis Muir jlm...@imca-cat.org writes: The word setup is a noun, not a verb. Change occurrences of setup where used as a verb to set up. --- pushed d ___ notmuch mailing list notmuch@notmuchmail.org

[PATCH] test: remove redundant 'file' command from gdb scripts.

2015-05-31 Thread David Bremner
Quoting Debian bug 787341 It failed to build on arm64: the last ten tests in T070-insert failed. What's happening here is that GDB is segfaulting in response to the file command. GDB on arm64 can be a bit buggy. However, the file command is redundant here as GDB has already