We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
warn
The bareword warn in
Penlight/lua/pl/compat.lua
Line 228 in a7b9f88
I believe you can achieve the same effect without use of potentially undefined variables by replacing
if not warn then
with:
if not rawget(_G, 'warn') then
Would you perhaps be able to make that change?
Thank you!
The text was updated successfully, but these errors were encountered:
fix(compat) use rawget to bypass "strict" checkers
33108c5
fixes #432
4dbde66
Successfully merging a pull request may close this issue.
The bareword
warn
inPenlight/lua/pl/compat.lua
Line 228 in a7b9f88
I believe you can achieve the same effect without use of potentially undefined variables by replacing
with:
Would you perhaps be able to make that change?
Thank you!
The text was updated successfully, but these errors were encountered: