1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-21 06:56:48 +02:00

* mu4e-proc: don't use process-live-p, it's emacs24 only

This commit is contained in:
djcb 2012-06-08 22:26:16 +03:00
parent f89a885c19
commit f37de2174c

View File

@ -88,7 +88,9 @@ the length (in hex).")
(defun mu4e~proc-is-running ()
"Whether the mu process is running."
(and mu4e~proc-process (process-live-p mu4e~proc-process)))
(and mu4e~proc-process
(memq (process-status mu4e~proc-process)
'(run open listen connect stop))))
(defun mu4e~proc-eat-sexp-from-buf ()