diff options
author | Vlad Dumitrescu <[email protected]> | 2015-01-16 09:39:31 +0100 |
---|---|---|
committer | Vlad Dumitrescu <[email protected]> | 2015-01-16 09:39:31 +0100 |
commit | 6f492b98505ee6d68b9f438915dfbd3616a1b729 (patch) | |
tree | 5c7a716d0aded23df9ec555fe591db69adb6b2e0 /lib/edoc/src/edoc_run.erl | |
parent | 341bd39f8c3b09b9fdaddbdadce42e80a2b3060d (diff) | |
download | otp-6f492b98505ee6d68b9f438915dfbd3616a1b729.tar.gz otp-6f492b98505ee6d68b9f438915dfbd3616a1b729.tar.bz2 otp-6f492b98505ee6d68b9f438915dfbd3616a1b729.zip |
[edoc] remove functionality related to packages
The 'subpackages' option is left, since some projects use recursive
source directories.
Diffstat (limited to 'lib/edoc/src/edoc_run.erl')
-rw-r--r-- | lib/edoc/src/edoc_run.erl | 30 |
1 files changed, 4 insertions, 26 deletions
diff --git a/lib/edoc/src/edoc_run.erl b/lib/edoc/src/edoc_run.erl index b5a1ef713d..9a569d0879 100644 --- a/lib/edoc/src/edoc_run.erl +++ b/lib/edoc/src/edoc_run.erl @@ -17,7 +17,7 @@ %% @copyright 2003 Richard Carlsson %% @author Richard Carlsson <[email protected]> %% @see edoc -%% @end +%% @end %% ===================================================================== %% @doc Interface for calling EDoc from Erlang startup options. @@ -38,7 +38,7 @@ -module(edoc_run). --export([file/1, application/1, packages/1, files/1, toc/1]). +-export([file/1, application/1, files/1, toc/1]). -compile({no_auto_import,[error/1]}). @@ -92,28 +92,6 @@ files(Args) -> end, run(F). -%% @spec packages([string()]) -> none() -%% -%% @doc Calls {@link edoc:application/2} with the corresponding -%% arguments. The strings in the list are parsed as Erlang constant -%% terms. The list can be either `[Packages]' or `[Packages, Options]'. -%% In the first case {@link edoc:application/1} is called instead. -%% -%% The function call never returns; instead, the emulator is -%% automatically terminated when the call has completed, signalling -%% success or failure to the operating system. - -packages(Args) -> - F = fun () -> - case parse_args(Args) of - [Packages] -> edoc:packages(Packages); - [Packages, Opts] -> edoc:packages(Packages, Opts); - _ -> - invalid_args("edoc_run:packages/1", Args) - end - end, - run(F). - %% @hidden Not official yet toc(Args) -> F = fun () -> @@ -131,8 +109,8 @@ toc(Args) -> %% %% @deprecated This is part of the old interface to EDoc and is mainly %% kept for backwards compatibility. The preferred way of generating -%% documentation is through one of the functions {@link application/1}, -%% {@link packages/1} and {@link files/1}. +%% documentation is through one of the functions {@link application/1} +%% and {@link files/1}. %% %% @doc Calls {@link edoc:file/2} with the corresponding arguments. The %% strings in the list are parsed as Erlang constant terms. The list can |