Skip to content

Commit

Permalink
Fixing highlighting of long character escape sequences.
Browse files Browse the repository at this point in the history
Previously, '\U10ffff' was not highlighted correctly.
  • Loading branch information
Wilfred committed Nov 25, 2014
1 parent 3f091eb commit 6cb1835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/julia-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ This function provides equivalent functionality, but makes no efforts to optimis
(syntax whitespace)
bol))
(submatch "'"
(or (repeat 0 7 (not (any "'"))) (not (any "\\"))
(or (repeat 0 8 (not (any "'"))) (not (any "\\"))
"\\\\")
"'")))

Expand Down

0 comments on commit 6cb1835

Please sign in to comment.