You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a perl script has taint mode enabled on its first line:
!/usr/bin/perl -T
then flymake will show an error on this line:
"-T" is on the #! line, it must also be used on the command line
This is because if a perl script has -T then it cannot be executed without -T. But the flymake-perl-init function only uses options c, w, I, and does not use -T .
The text was updated successfully, but these errors were encountered:
If a perl script has taint mode enabled on its first line:
!/usr/bin/perl -T
then flymake will show an error on this line:
"-T" is on the #! line, it must also be used on the command line
This is because if a perl script has -T then it cannot be executed without -T. But the flymake-perl-init function only uses options c, w, I, and does not use -T .
The text was updated successfully, but these errors were encountered: