Skip to content

Commit

Permalink
Make Rakudo::Internals.E return a List
Browse files Browse the repository at this point in the history
Which make it easier to use in a run / Proc::Async.new
  • Loading branch information
lizmat committed Jan 21, 2021
1 parent 3c79db6 commit 116c8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/Rakudo/Internals.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ implementation detail and has no serviceable parts inside"
$E,
$E := nqp::if(
nqp::existskey($compiling-options,'e'),
"-e'" ~ nqp::atkey($compiling-options,'e') ~ "'",
('-e', nqp::atkey($compiling-options,'e')),
Empty
)
)
Expand Down

0 comments on commit 116c8e8

Please sign in to comment.