mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Use notmuch-command variable in process-lines.
The process-lines function calls the notmuch binary. The location of the binary may have been customized by the user, so it is better to use the customized location rather than allowing the process-lines function to search the user's PATH for the binary.
This commit is contained in:
parent
3a0a730336
commit
9e805b6a58
1 changed files with 1 additions and 1 deletions
|
@ -885,7 +885,7 @@ PROMPT is the string to prompt with."
|
|||
"subject:" "attachment:")
|
||||
(mapcar (lambda (tag)
|
||||
(concat "tag:" tag))
|
||||
(process-lines "notmuch" "search" "--output=tags" "*")))))
|
||||
(process-lines notmuch-command "search" "--output=tags" "*")))))
|
||||
(let ((keymap (copy-keymap minibuffer-local-map))
|
||||
(minibuffer-completion-table
|
||||
(completion-table-dynamic
|
||||
|
|
Loading…
Reference in a new issue