Skip to content

Commit

Permalink
fix paren in julia-warn-revise regexp
Browse files Browse the repository at this point in the history
resolves: tpapp#53, tpapp#47
  • Loading branch information
dellison committed Jan 23, 2019
1 parent d8b94c6 commit 5ba535e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion julia-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Note that this affects all buffers using the ‘ansi-term’ map."
;; matches "around /tmp/Foo.jl:2", also starting with "at" or "Revise"
(julia-loc . ("\\(around\\|at\\|Revise\\) \\([^ ><()\t\n,'\";:]+\\):\\([0-9]+\\)" 2 3))
;; matches "omitting file /tmp/Foo.jl due to parsing error near line 2", from Revise.parse_source!
(julia-warn-revise . ("omitting file ([^ ><()\t\n,'\";:]+\\) due to parsing error near line \\([0-9]+\\)" 1 2))
(julia-warn-revise . ("omitting file \\([^ ><()\t\n,'\";:]+\\) due to parsing error near line \\([0-9]+\\)" 1 2))
)
"Specifications for highlighting error locations.
Expand Down

0 comments on commit 5ba535e

Please sign in to comment.