mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
emacs: tree: bugfix: specify --format-version
Previously notmuch tree did not specify the format-version when
calling notmuch. This meant that when the structured output was
slightly changed (in commit 14c60cf168
)
stash filename broke. This fixes this breakage by specifying the
format-version.
This commit is contained in:
parent
e64fdf889d
commit
2d79d38a0f
1 changed files with 1 additions and 1 deletions
|
@ -917,7 +917,7 @@ the same as for the function notmuch-tree."
|
||||||
(notmuch-tag-clear-cache)
|
(notmuch-tag-clear-cache)
|
||||||
(let ((proc (notmuch-start-notmuch
|
(let ((proc (notmuch-start-notmuch
|
||||||
"notmuch-tree" (current-buffer) #'notmuch-tree-process-sentinel
|
"notmuch-tree" (current-buffer) #'notmuch-tree-process-sentinel
|
||||||
"show" "--body=false" "--format=sexp"
|
"show" "--body=false" "--format=sexp" "--format-version=2"
|
||||||
message-arg search-args))
|
message-arg search-args))
|
||||||
;; Use a scratch buffer to accumulate partial output.
|
;; Use a scratch buffer to accumulate partial output.
|
||||||
;; This buffer will be killed by the sentinel, which
|
;; This buffer will be killed by the sentinel, which
|
||||||
|
|
Loading…
Reference in a new issue