Skip to content

Commit

Permalink
Fix message
Browse files Browse the repository at this point in the history
Regression from acdd970
  • Loading branch information
swsnr committed Dec 23, 2014
1 parent acdd970 commit 23a513b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flycheck-ocaml.el
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Return the corresponding `flycheck-error'."
;; https://github.com/flycheck/flycheck-ocaml/issues/2
(flycheck-error-new-at (or .start.line 1)
(when .start.col (1+ .start.col))
(or level 'error) (or .message message)
(or level 'error) (or message .message)
:checker checker
:buffer buffer
:filename (buffer-file-name))))))
Expand Down

0 comments on commit 23a513b

Please sign in to comment.