diff options
author | Richard Carlsson <[email protected]> | 2016-10-29 23:40:01 +0200 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2016-11-29 14:15:32 +0100 |
commit | ba8f27dca5662ca7c66ac766be107342d808e72b (patch) | |
tree | 03a3cb4243bb08527fca94b9e8703baa0e276271 /lib/stdlib | |
parent | 12f6a1b18fc573ce3f245bfd69e62fbaa378b80e (diff) | |
download | otp-ba8f27dca5662ca7c66ac766be107342d808e72b.tar.gz otp-ba8f27dca5662ca7c66ac766be107342d808e72b.tar.bz2 otp-ba8f27dca5662ca7c66ac766be107342d808e72b.zip |
Make warn_export_all the default
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/erl_lint.erl | 2 | ||||
-rw-r--r-- | lib/stdlib/test/erl_lint_SUITE.erl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/erl_lint.erl b/lib/stdlib/src/erl_lint.erl index 49b65069b7..1b84234fac 100644 --- a/lib/stdlib/src/erl_lint.erl +++ b/lib/stdlib/src/erl_lint.erl @@ -526,7 +526,7 @@ start(File, Opts) -> true, Opts)}, {export_all, bool_option(warn_export_all, nowarn_export_all, - false, Opts)}, + true, Opts)}, {export_vars, bool_option(warn_export_vars, nowarn_export_vars, false, Opts)}, diff --git a/lib/stdlib/test/erl_lint_SUITE.erl b/lib/stdlib/test/erl_lint_SUITE.erl index 4ee3950882..3484976477 100644 --- a/lib/stdlib/test/erl_lint_SUITE.erl +++ b/lib/stdlib/test/erl_lint_SUITE.erl @@ -2702,9 +2702,9 @@ export_all(Config) when is_list(Config) -> id(I) -> I. ">>, - [] = run_test2(Config, Ts, []), + [] = run_test2(Config, Ts, [nowarn_export_all]), {warnings,[{2,erl_lint,export_all}]} = - run_test2(Config, Ts, [warn_export_all]), + run_test2(Config, Ts, []), ok. %% Test warnings for functions that clash with BIFs. |