Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clear E2's strfunc cache when defining a function
Previously the following code: function string f() { print("A") } "f"() function string f() { print("B") } "f"() ...would print "A" twice, because the previous entry for "f()" was still present in the cache. Fixes #1612.
- Loading branch information