From 5f3393ef83d621c8bc84dd74a37890ea5225d164 Mon Sep 17 00:00:00 2001 From: djcb Date: Mon, 20 May 2013 05:59:48 +0300 Subject: [PATCH] * mu4e: mu4e-proc: fix ping, quit --- mu4e/mu4e-proc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index ab078bca..a521834f 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -81,7 +81,7 @@ Match 1 will be the length (in hex).") (when proc (let ((delete-exited-processes t)) ;; the mu server signal handler will make it quit after 'quit' - (mu4e~proc-send-command "quit")) + (mu4e~proc-send-command "cmd:quit")) ;; try sending SIGINT (C-c) to process, so it can exit gracefully (ignore-errors (signal-process proc 'SIGINT)))) @@ -467,7 +467,7 @@ mean: (defun mu4e~proc-ping () "Sends a ping to the mu server, expecting a (:pong ...) in response." - (mu4e~proc-send-command "ping")) + (mu4e~proc-send-command "cmd:ping")) (defun mu4e~proc-contacts (personal after) "Sends the contacts command to the mu server.