branch: elpa/helm commit 4489fec779eb4c2f54db06218c83d431a88716b5 Author: Thierry Volpiatto <thie...@posteo.net> Commit: Thierry Volpiatto <thie...@posteo.net>
Fix highlighting matches with new :diacritics slot --- helm-core.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helm-core.el b/helm-core.el index b536f2fd05..d034c777e6 100644 --- a/helm-core.el +++ b/helm-core.el @@ -4545,8 +4545,7 @@ to the matching method in use." "The filtered-candidate-transformer function to highlight fuzzy matches. See `helm-fuzzy-default-highlight-match'." (cl-assert helm-fuzzy-matching-highlight-fn nil "Wrong type argument functionp: nil") - (cl-loop with diac = (memq 'helm-mm-3-match-on-diacritics - (helm-mklist (helm-get-attr 'match source))) + (cl-loop with diac = (helm-get-attr 'diacritics source) for c in candidates collect (funcall helm-fuzzy-matching-highlight-fn c diac)))