From af4f12c696666628e7f5e656f092928b79b38127 Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 28 Oct 2017 20:33:41 +0300 Subject: [PATCH] mu4e: allow longer queries Tell base64-encode-string not to include newlines. --- mu4e/mu4e-proc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index ffa38f61..afbd4571 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -339,7 +339,7 @@ or an error." (concat "cmd:find query:%s threads:%s sortfield:%s reverse:%s maxnum:%d " "skip-dups:%s include-related:%s") - (base64-encode-string query) + (base64-encode-string query t) (if threads "true" "false") ;; sortfield is e.g. ':subject'; this removes the ':' (if (null sortfield) "nil" (substring (symbol-name sortfield) 1))