Skip to content

Commit

Permalink
Improve matching of '«' and '<' strings
Browse files Browse the repository at this point in the history
'«<«' is not a delimiter of such strings, for instance.
  • Loading branch information
hinrik committed Oct 9, 2015
1 parent 86c5f98 commit a2cc73f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perl6-font-lock.el
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ Takes arguments START and END which delimit the region to propertize."
((rx "#")
(0 (ignore (perl6-syntax-propertize-comment end))))
;; angle-bracketed quoting construct
((rx (1+ (char "<«")))
((rx (or (1+ "<") (1+ "«")))
(0 (ignore (perl6-syntax-propertize-angles (match-string 0)))))
;; postfix hyper operators
((perl6-rx (or identifier "]" ")") (group (or "»" ">>")))
Expand Down

0 comments on commit a2cc73f

Please sign in to comment.