Skip to content

Commit

Permalink
fix diff again
Browse files Browse the repository at this point in the history
  • Loading branch information
pdeffebach committed Dec 18, 2023
1 parent 79344fb commit 8bd6690
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/macros.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1457,9 +1457,12 @@ end
##
##############################################################################
function transform_helper(x, args...)
x, exprs, outer_flags, kw = get_df_args_kwargs(x, args...; wrap_byrow = false)
t = (fun_to_vec(ex; gensym_names = false, outer_flags = outer_flags) for ex in exprs)
:($transform($x, $(t...); $(kw...)))
x, exprs, outer_flags, kw = get_df_args_kwargs(x, args...; wrap_byrow = false)

t = (fun_to_vec(ex; gensym_names = false, outer_flags = outer_flags) for ex in exprs)
quote
$transform($x, $(t...); $(kw...))
end
end

"""
Expand Down

0 comments on commit 8bd6690

Please sign in to comment.