branch: elpa/raku-mode commit 4aa7fde34b9e81337eba6a694e7f8242fb083b02 Author: Hinrik Örn Sigurðsson <hinrik....@gmail.com> Commit: Hinrik Örn Sigurðsson <hinrik....@gmail.com>
Separate syntax flags "C-u C-x =" now correctly reports these as prefix chars. --- perl6-font-lock.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl6-font-lock.el b/perl6-font-lock.el index d51fc25b5a..5c85bbe60c 100644 --- a/perl6-font-lock.el +++ b/perl6-font-lock.el @@ -455,8 +455,8 @@ Takes arguments START and END which delimit the region to propertize." (perl6-syntax-propertize-delimiters "|"))))) ;; sigils and twigils are prefix characters ((perl6-rx variable) - (1 ".p") - (2 ".p") + (1 ". p") + (2 ". p") ;; go back to the end of the twigils/sigils, so other syntax ;; rules above can be applied to later parts of the variable name (4 (ignore (goto-char (or (match-end 2) (match-end 1)))))))