Fixed a bug for queries prefixed with \.
authorFrancois Fleuret <francois@fleuret.org>
Fri, 8 Feb 2013 18:47:50 +0000 (19:47 +0100)
committerFrancois Fleuret <francois@fleuret.org>
Fri, 8 Feb 2013 18:47:50 +0000 (19:47 +0100)
mymail-vm.el

index c2b96ae..5d9d50c 100644 (file)
@@ -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) ","))
            )))