Skip to content

Commit

Permalink
Merge pull request #223 from ikirill/fix-println-stderr
Browse files Browse the repository at this point in the history
Print non-message to STDERR to avoid confusing emacs.
  • Loading branch information
TotalVerb committed Apr 23, 2017
2 parents 7f311ed + ecbb29a commit f629ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/knowndeprec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function processOneSig(s, typeHints)
ditype = determineType(s.args[1].args[end])
return (s.head, ditype)
else
println("Lint doesn't understand " * string(s) * " as an argument")
println(STDERR, "Lint doesn't understand " * string(s) * " as an argument")
end
end

Expand Down

0 comments on commit f629ae0

Please sign in to comment.