Fixed
Details
Assignee
UnassignedUnassignedReporter
Nicola MomettoNicola MomettoApproval
OkPatch
CodePriority
MajorAffects versions
Fix versions
Details
Details
Assignee
Unassigned
UnassignedReporter
Nicola Mometto
Nicola MomettoApproval
Ok
Patch
Code
Priority

Affects versions
Fix versions
Created January 25, 2018 at 1:45 PM
Updated November 1, 2024 at 5:10 PM
Resolved November 1, 2024 at 5:10 PM
Currently, while nonsensical, it is technically possible to `recur` to a `^:once fn*` point.
Repro:
Proposed:
If recur to head and in :once, then turn off :once and don’t clear closed overs. This allows existing code in the wild to continue to work correctly (by ignoring the :once hint in this case).
This change is being made in the context of .
Alternative:
Make this a compile error and throw if
recur
attempted inside:once
fnThis is useful so that code like `(future (recur))` doesn't compile, giving users the impression that it's supposed to work (see comments at for an example)
Patch: 0001-CLJ-2317-disallow-recur-to-once-fn.patch
Decided not to do this as there is existing code, especially code that combines macros that make :once fns with code that may recur without knowing that.