From e3b8d318444f13acefc0b8840c899eb9eb8aa9cb Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Fri, 8 Feb 2013 19:47:50 +0100 Subject: [PATCH] Fixed a bug for queries prefixed with \. --- mymail-vm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mymail-vm.el b/mymail-vm.el index c2b96ae..5d9d50c 100644 --- a/mymail-vm.el +++ b/mymail-vm.el @@ -44,7 +44,7 @@ prefaced with \\." (if (not (string= searche-request "")) (list "-s" searche-request))) (if (string= (substring param 0 1) "\\") - (split-string (substring param 1 nil)) + (split-string (substring param 1 nil) ",") (split-string (concat param "," mymail/default-search-request) ",")) ))) -- 2.20.1