Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

julia-mode.el: Highlight triple-quoted strings and characters. #9152

Merged
merged 5 commits into from
Nov 30, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fixing highlighting of long character escape sequences.
Previously, '\U10ffff' was not highlighted correctly.
  • Loading branch information
Wilfred committed Nov 25, 2014
commit 6cb1835eb1bf03905deb797cdb47580383618fe0
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