Skip to content

Commit 91554c9

Browse files
authored
Merge pull request #103 from MikeInnes/longdef-nostrip
Don't strip lines in longdef1
2 parents 7101f29 + e08bd56 commit 91554c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function longdef1(ex)
209209
@q function ($arg,) $(body.args...) end
210210
elseif isshortdef(ex)
211211
@assert @capture(ex, (fcall_ = body_))
212-
striplines(Expr(:function, fcall, body))
212+
Expr(:function, fcall, body)
213213
else
214214
ex
215215
end

0 commit comments

Comments
 (0)