Skip to content

Commit

Permalink
Add commit number for split change
Browse files Browse the repository at this point in the history
  • Loading branch information
simonster committed Oct 16, 2014
1 parent 31e3a57 commit b9fef02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function _compat(ex::Expr)
f = ex.args[1]
if VERSION < v"0.4.0-dev+980" && (f == :Dict || (isexpr(f, :curly) && length(f.args) == 3 && f.args[1] == :Dict))
ex = rewrite_dict(ex)
elseif VERSION < v"0.4-" && f == :split && length(ex.args) >= 4 && isexpr(ex.args[4], :kw)
elseif VERSION < v"0.4.0-dev+129" && f == :split && length(ex.args) >= 4 && isexpr(ex.args[4], :kw)
ex = rewrite_split(ex)
end
end
Expand Down

0 comments on commit b9fef02

Please sign in to comment.