emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/raku-mode 5b47a0b1a2 066/253: Deal with [-'] preceded by a


From: ELPA Syncer
Subject: [nongnu] elpa/raku-mode 5b47a0b1a2 066/253: Deal with [-'] preceded by a non-ASII identifier character
Date: Sat, 29 Jan 2022 08:28:43 -0500 (EST)

branch: elpa/raku-mode
commit 5b47a0b1a2c3f435c9234cc5dc1b54d044f5a633
Author: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>
Commit: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>

    Deal with [-'] preceded by a non-ASII identifier character
    
    Meant to do this in 4556ff4.
---
 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 ab7cfbb8f5..aeb5d6e3be 100644
--- a/perl6-font-lock.el
+++ b/perl6-font-lock.el
@@ -292,7 +292,7 @@ Takes arguments START and END which delimit the region to 
propertize."
     (funcall
      (syntax-propertize-rules
       ;; [-'] between identifiers are symbol chars
-      ((rx (any "A-Za-z0-9") (group (any "-'")) (any "A-Za-z"))
+      ((rx alnum (group (any "-'")) alpha)
        (1 "_"))
       ;; same for "::" around identifiers
       ((rx (or (and "::" symbol-start)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]