summaryrefslogtreecommitdiff
path: root/helm-utils.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-29 08:16:51 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2017-03-29 08:27:57 +0200
commit64340a29c66d67caa9c8742cf335b4084e17887f (patch)
treebd0152e3da92a42fa98db11c8fd80c1db7b349f6 /helm-utils.el
parent9a83715eb2a5df03ae42242fd6ec9e1d2b182dcc (diff)
Fix highlighting matches with literal spaces.
* helm-multi-match.el (helm-mm-split-pattern): Remove unneeded backquotes. * helm-utils.el (helm-highlight-current-line): Split with helm-mm-split-pattern.
Diffstat (limited to 'helm-utils.el')
-rw-r--r--helm-utils.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-utils.el b/helm-utils.el
index 6aacef56..6a2b8bd9 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -621,7 +621,7 @@ If STRING is non--nil return instead a space separated string."
(catch 'empty-line
(cl-loop with ov
for r in (helm-remove-if-match
- "\\`!" (split-string
+ "\\`!" (helm-mm-split-pattern
(if (with-helm-buffer
;; Needed for highlighting AG matches.
(assq 'pcre (helm-get-current-source)))