From 832d32ef230915d317cb295f5168f1ebcbeef813 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Wed, 12 Feb 2020 16:58:40 +0100 Subject: [PATCH] mu4e-proc.el: Remove duplicated variable declarations --- mu4e/mu4e-proc.el | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index d0e97b38..9e53cbf3 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -30,7 +30,9 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; internal vars -(defconst mu4e~proc-name "*mu4e-proc*" +(defvar mu4e~proc-buf nil + "Buffer (string) for data received from the backend.") +(defconst mu4e~proc-name " *mu4e-proc*" "Name of the server process, buffer.") (defvar mu4e~proc-process nil "The mu-server process.") @@ -47,13 +49,6 @@ "Regular expression matching the length cookie. Match 1 will be the length (in hex).") -(defvar mu4e~proc-buf nil - "Buffer (string) for data received from the backend.") -(defconst mu4e~proc-name " *mu4e-proc*" - "Name of the server process, buffer.") -(defvar mu4e~proc-process nil - "The mu-server process.") - (defun mu4e~proc-running-p () "Whether the mu process is running." (when (and mu4e~proc-process