From f66be1912132fc08b6eba03b1646fdf53c3c5f8e Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Wed, 12 Feb 2020 17:15:00 +0100 Subject: [PATCH] mu4e~proc-running-p: Cosmetics --- mu4e/mu4e-proc.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index 9e53cbf3..c51cc0d8 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -51,10 +51,10 @@ Match 1 will be the length (in hex).") (defun mu4e~proc-running-p () "Whether the mu process is running." - (when (and mu4e~proc-process - (memq (process-status mu4e~proc-process) - '(run open listen connect stop))) - t)) + (and mu4e~proc-process + (memq (process-status mu4e~proc-process) + '(run open listen connect stop)) + t)) (defsubst mu4e~proc-eat-sexp-from-buf () "'Eat' the next s-expression from `mu4e~proc-buf'.