diff options
author | Hans Bolinder <[email protected]> | 2012-10-04 15:58:26 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-01-25 12:54:26 +0100 |
commit | 83e9d1c4c2c12d3509e3399f4dcd8bfa826ea884 (patch) | |
tree | 863c373547e57f02d7c167c67ba8c89d5a42f312 | |
parent | 61f8a41388d95f6b8c0e2e5a06de586cecf184c6 (diff) | |
download | otp-83e9d1c4c2c12d3509e3399f4dcd8bfa826ea884.tar.gz otp-83e9d1c4c2c12d3509e3399f4dcd8bfa826ea884.tar.bz2 otp-83e9d1c4c2c12d3509e3399f4dcd8bfa826ea884.zip |
[stdlib] Remove documentation of Unicode functions in io_lib
The documentation of some Unicode functions in io_lib was committed by
mistake.
-rw-r--r-- | lib/kernel/src/group.erl | 5 | ||||
-rw-r--r-- | lib/stdlib/doc/src/io_lib.xml | 64 |
2 files changed, 1 insertions, 68 deletions
diff --git a/lib/kernel/src/group.erl b/lib/kernel/src/group.erl index c66e823a04..334880f009 100644 --- a/lib/kernel/src/group.erl +++ b/lib/kernel/src/group.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2010. All Rights Reserved. +%% Copyright Ericsson AB 1996-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -446,7 +446,6 @@ get_chars_loop(Pbs, M, F, Xa, Drv, Buf0, State, Encoding) -> end. get_chars_apply(Pbs, M, F, Xa, Drv, Buf, State0, Line, Encoding) -> - id(M,F), case catch M:F(State0, cast(Line,get(read_mode), Encoding), Encoding, Xa) of {stop,Result,Rest} -> {ok,Result,append(Rest, Buf, Encoding)}; @@ -456,8 +455,6 @@ get_chars_apply(Pbs, M, F, Xa, Drv, Buf, State0, Line, Encoding) -> get_chars_loop(Pbs, M, F, Xa, Drv, Buf, State1, Encoding) end. -id(M,F) -> - {M,F}. %% Convert error code to make it look as before err_func(io_lib, get_until, {_,F,_}) -> F; diff --git a/lib/stdlib/doc/src/io_lib.xml b/lib/stdlib/doc/src/io_lib.xml index 617a6b74fc..7487cb5740 100644 --- a/lib/stdlib/doc/src/io_lib.xml +++ b/lib/stdlib/doc/src/io_lib.xml @@ -43,12 +43,6 @@ <name name="chars"/> </datatype> <datatype> - <name name="unicode_chars"/> - </datatype> - <datatype> - <name name="unicode_string"/> - </datatype> - <datatype> <name name="continuation"/> <desc><p>A continuation as returned by <seealso marker="#fread/3"><c>fread/3</c></seealso>.</p> </desc> @@ -218,23 +212,6 @@ </desc> </func> <func> - <name name="write_unicode_string" arity="1"/> - <fsummary>Write a Unicode string</fsummary> - <desc> - <p>Returns the list of characters needed to print - <c><anno>UnicodeString</anno></c> as a string.</p> - </desc> - </func> - <func> - <name name="write_unicode_string_as_latin1" arity="1"/> - <fsummary>Write a Unicode string</fsummary> - <desc> - <p>Returns the list of characters needed to print - <c><anno>UnicodeString</anno></c> as a string. Non-Latin-1 - characters are escaped.</p> - </desc> - </func> - <func> <name name="write_char" arity="1"/> <fsummary>Write a character</fsummary> <desc> @@ -243,23 +220,6 @@ </desc> </func> <func> - <name name="write_unicode_char" arity="1"/> - <fsummary>Write a Unicode character</fsummary> - <desc> - <p>Returns the list of characters needed to print a character - constant in the Unicode character set.</p> - </desc> - </func> - <func> - <name name="write_unicode_char_as_latin1" arity="1"/> - <fsummary>Write a Unicode character</fsummary> - <desc> - <p>Returns the list of characters needed to print a character - constant in the Unicode character set. Non-Latin-1 characters - are escaped.</p> - </desc> - </func> - <func> <name name="indentation" arity="2"/> <fsummary>Indentation after printing string</fsummary> <desc> @@ -276,14 +236,6 @@ </desc> </func> <func> - <name name="unicode_char_list" arity="1"/> - <fsummary>Test for a list of Unicode characters</fsummary> - <desc> - <p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of - characters in the Unicode range, otherwise it returns <c>false</c>.</p> - </desc> - </func> - <func> <name name="deep_char_list" arity="1"/> <fsummary>Test for a deep list of characters</fsummary> <desc> @@ -292,14 +244,6 @@ </desc> </func> <func> - <name name="deep_unicode_char_list" arity="1"/> - <fsummary>Test for a deep list of Unicode characters</fsummary> - <desc> - <p>Returns <c>true</c> if <c><anno>Term</anno></c> is a, possibly deep, list - of characters in the Unicode range, otherwise it returns <c>false</c>.</p> - </desc> - </func> - <func> <name name="printable_list" arity="1"/> <fsummary>Test for a list of printable ISO-latin-1 characters</fsummary> <desc> @@ -307,14 +251,6 @@ printable ISO-latin-1 characters, otherwise it returns <c>false</c>.</p> </desc> </func> - <func> - <name name="printable_unicode_list" arity="1"/> - <fsummary>Test for a list of printable Unicode characters</fsummary> - <desc> - <p>Returns <c>true</c> if <c><anno>Term</anno></c> is a flat list of - printable Unicode characters, otherwise it returns <c>false</c>.</p> - </desc> - </func> </funcs> </erlref> |