branch: elpa/helm
commit 66a10f63aa3c483d8b14d7ee235a572204bd078d
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Change regexp in helm-get-selection #2743
---
helm-core.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm-core.el b/helm-core.el
index a463b3671a1..9d01e478067 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -2538,7 +2538,7 @@ when you want the `display-to-real' function(s) to be
applied."
((guard* (eq force-display-part 'noicon))
;; Remove icon if some from display see issue#2743.
(replace-regexp-in-string
- "^[^[:ascii:]][ \t]*" "" it))
+ "^[[:multibyte:]][ \t]+" "" it))
(t it))))
(src (or source (helm-get-current-source)))
(selection (helm-acond (force-display-part disp)