From: Francois Fleuret Date: Fri, 8 Feb 2013 18:47:50 +0000 (+0100) Subject: Fixed a bug for queries prefixed with \. X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mymail.git;a=commitdiff_plain;h=e3b8d318444f13acefc0b8840c899eb9eb8aa9cb Fixed a bug for queries prefixed with \. --- 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) ",")) )))