branch: elpa/raku-mode commit d017e51bd46c0f7a68d339098e14f3ab622d3402 Author: Hinrik Örn Sigurðsson <hinrik....@gmail.com> Commit: Hinrik Örn Sigurðsson <hinrik....@gmail.com>
Set 'face property, not 'font-lock-face --- perl6-font-lock.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl6-font-lock.el b/perl6-font-lock.el index 0099c6a29a..e6aa8a74a9 100644 --- a/perl6-font-lock.el +++ b/perl6-font-lock.el @@ -291,7 +291,7 @@ Takes arguments START and END which delimit the region to propertize." ;; set operators ((perl6-rx set-operator) (0 (prog1 "." (put-text-property (match-beginning 0) (match-end 0) - 'font-lock-face 'perl6-operator)))) + 'face 'perl6-operator)))) ((rx (1+ (char "<«"))) (0 (ignore (perl6-syntax-propertize-angles (match-string 0)))))) start end)))