From 20cc39d443d1a2c364b0fb778c7813ae7b5a1dd6 Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Tue, 11 Dec 2018 17:42:39 +0100 Subject: Add "since" attributes in xml for new functions and modules introduced after OTP_R13B03. --- lib/compiler/doc/src/compile.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/compiler') diff --git a/lib/compiler/doc/src/compile.xml b/lib/compiler/doc/src/compile.xml index cfbd4c7fda..4c8b34e278 100644 --- a/lib/compiler/doc/src/compile.xml +++ b/lib/compiler/doc/src/compile.xml @@ -40,7 +40,7 @@ - env_compiler_options() + env_compiler_options() Compiler options defined via the environment variable ERL_COMPILER_OPTIONS -- cgit v1.2.3 From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/compiler/doc/src/compile.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'lib/compiler') diff --git a/lib/compiler/doc/src/compile.xml b/lib/compiler/doc/src/compile.xml index 4c8b34e278..7f3d6aa60e 100644 --- a/lib/compiler/doc/src/compile.xml +++ b/lib/compiler/doc/src/compile.xml @@ -29,7 +29,7 @@ A compile.sgml - compile + compile Erlang Compiler

This module provides an interface to the standard Erlang @@ -53,7 +53,7 @@ - file(File) + file(File) Compiles a file.

Is the same as @@ -63,7 +63,7 @@ - file(File, Options) -> CompRet + file(File, Options) -> CompRet Compiles a file. CompRet = ModRet | BinRet | ErrRet @@ -718,7 +718,7 @@ module.beam: module.erl \ - forms(Forms) + forms(Forms) Compiles a list of forms.

Is the same as @@ -728,7 +728,7 @@ module.beam: module.erl \ - forms(Forms, Options) -> CompRet + forms(Forms, Options) -> CompRet Compiles a list of forms. Forms = [Form] @@ -749,7 +749,7 @@ module.beam: module.erl \ - format_error(ErrorDescriptor) -> chars() + format_error(ErrorDescriptor) -> chars() Formats an error descriptor. ErrorDescriptor = errordesc() @@ -764,7 +764,7 @@ module.beam: module.erl \ - output_generated(Options) -> true | false + output_generated(Options) -> true | false Determines whether the compiler generates an output file. Options = [term()] @@ -779,7 +779,7 @@ module.beam: module.erl \ - noenv_file(File, Options) -> CompRet + noenv_file(File, Options) -> CompRet Compiles a file (ignoring ERL_COMPILER_OPTIONS).

Works like file/2, @@ -789,7 +789,7 @@ module.beam: module.erl \ - noenv_forms(Forms, Options) -> CompRet + noenv_forms(Forms, Options) -> CompRet Compiles a list of forms (ignoring ERL_COMPILER_OPTIONS).

Works like forms/2, @@ -799,7 +799,7 @@ module.beam: module.erl \ - noenv_output_generated(Options) -> true | false + noenv_output_generated(Options) -> true | false Determines whether the compiler generates an output file (ignoring ERL_COMPILER_OPTIONS). -- cgit v1.2.3