diff options
| author | Omar AntolÃn Camarena <omar.antolin@gmail.com> | 2021-01-26 19:04:32 -0600 |
|---|---|---|
| committer | Omar AntolÃn Camarena <omar.antolin@gmail.com> | 2021-01-26 19:04:32 -0600 |
| commit | ea60844b8275f6615f2b3376971f64cfc78f3f37 (patch) | |
| tree | 03cffcfedca2fd32a2c2a30d1b4ffe9465e565b3 | |
| parent | c023ee1cbe2185ab984981d662ad63ce1c905ddb (diff) | |
Add missing funcall in decision whether to skip highlighting
Thanks for spotting that, @clemera
| -rw-r--r-- | orderless.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/orderless.el b/orderless.el index 4e6bcd1..01af2fa 100644 --- a/orderless.el +++ b/orderless.el @@ -435,7 +435,7 @@ This function is part of the `orderless' completion style." (orderless--prefix+pattern string table pred)) (skip-highlighting (if (functionp orderless-skip-highlighting) - (orderless-skip-highlighting) + (funcall orderless-skip-highlighting) orderless-skip-highlighting))) (nconc (if skip-highlighting |
