Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Feb 12, 2025
1 parent 4e7f565 commit a2ff9db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ namespace jank::runtime::obj
lazy_sequence_ptr lazy_sequence::with_meta(object_ptr const m) const
{
resolve_seq();
auto const s(runtime::fresh_seq(sequence));
auto const s(sequence ? runtime::fresh_seq(sequence) : nil::nil_const());
auto const ret(make_box<lazy_sequence>(nullptr, s==nil::nil_const() ? nullptr : s));
auto const meta(behavior::detail::validate_meta(m));
ret->meta = meta;
Expand Down

0 comments on commit a2ff9db

Please sign in to comment.