diff options
author | Kostis Sagonas <[email protected]> | 2011-02-06 12:26:21 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2011-02-06 12:26:21 +0200 |
commit | 8522aaffd9ff146492808ae2a5be9ef58e4e8b90 (patch) | |
tree | dac1534ec0d1f4c8329baa78b27db2c88a23fb30 | |
parent | 7aabed32dd2eb7c89b061c53639a082c09bf693a (diff) | |
download | otp-8522aaffd9ff146492808ae2a5be9ef58e4e8b90.tar.gz otp-8522aaffd9ff146492808ae2a5be9ef58e4e8b90.tar.bz2 otp-8522aaffd9ff146492808ae2a5be9ef58e4e8b90.zip |
Moved option to its proper position
-rw-r--r-- | lib/typer/src/typer_options.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/typer/src/typer_options.erl b/lib/typer/src/typer_options.erl index c0f4260f19..9545c7334b 100644 --- a/lib/typer/src/typer_options.erl +++ b/lib/typer/src/typer_options.erl @@ -60,7 +60,6 @@ analyze_args(ArgList, Args, Analysis) -> cl(["-h"|_]) -> help_message(); cl(["--help"|_]) -> help_message(); -cl(["--no_spec"|Opts]) -> {no_spec, Opts}; cl(["-v"|_]) -> version_message(); cl(["--version"|_]) -> version_message(); cl(["--comments"|Opts]) -> {comments, Opts}; @@ -69,6 +68,7 @@ cl(["--show_exported"|Opts]) -> {{mode, ?SHOW_EXPORTED}, Opts}; cl(["--show-exported"|Opts]) -> {{mode, ?SHOW_EXPORTED}, Opts}; cl(["--annotate"|Opts]) -> {{mode, ?ANNOTATE}, Opts}; cl(["--annotate-inc-files"|Opts]) -> {{mode, ?ANNOTATE_INC_FILES}, Opts}; +cl(["--no_spec"|Opts]) -> {no_spec, Opts}; cl(["--plt",Plt|Opts]) -> {{plt, Plt}, Opts}; cl(["-D"++Def|Opts]) -> case Def of |