notmuch.el: Switch from compilation-start to start-process

Compilation mode does a bunch of things that we don't want. Instead
of trying to tear it down to what we want, let's start at the other
end and build up only things that we really want.
This commit is contained in:
Carl Worth 2009-10-30 23:42:39 -07:00
parent 7e8ba9adf8
commit eb1a5b441b

View file

@ -42,8 +42,8 @@
(defun notmuch-search (query)
"Run \"notmuch search\" with the given query string and display results."
(interactive "sNotmuch search:")
(compilation-start (concat "notmuch search " query) 'notmuch-search-mode))
(interactive "sNotmuch search: ")
(start-process "notmuch-search" (concat "*notmuch-search-" query) "notmuch" "search" query))
(defun notmuch ()
"Run notmuch to display all mail with tag of 'inbox'"