diff options
author | Hans Bolinder <[email protected]> | 2017-03-22 09:41:57 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-04-07 08:57:26 +0200 |
commit | 92c79e394041f76d8f676cafe9b6af44522497bd (patch) | |
tree | 7c89b19a9997346aea81cd387dcc370ca02ce08f /lib/stdlib/doc/src | |
parent | 97d1f21f53fabd27e31fe9aa46ffd9f0c00bcbec (diff) | |
download | otp-92c79e394041f76d8f676cafe9b6af44522497bd.tar.gz otp-92c79e394041f76d8f676cafe9b6af44522497bd.tar.bz2 otp-92c79e394041f76d8f676cafe9b6af44522497bd.zip |
stdlib: Add function to io_lib to handle Unicode atoms
Diffstat (limited to 'lib/stdlib/doc/src')
-rw-r--r-- | lib/stdlib/doc/src/io_lib.xml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/stdlib/doc/src/io_lib.xml b/lib/stdlib/doc/src/io_lib.xml index 931e50f6f2..5ae400da62 100644 --- a/lib/stdlib/doc/src/io_lib.xml +++ b/lib/stdlib/doc/src/io_lib.xml @@ -4,7 +4,7 @@ <erlref> <header> <copyright> - <year>1996</year><year>2016</year> + <year>1996</year><year>2017</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -147,7 +147,7 @@ format string (that is, <c>~ts</c> or <c>~tc</c>), the resulting list can contain characters beyond the ISO Latin-1 character range (that is, numbers > 255). If so, the - result is not an ordinary Erlang <c>string()</c>, but can well be + result is still an ordinary Erlang <c>string()</c>, and can well be used in any context where Unicode data is allowed.</p> </desc> </func> @@ -384,6 +384,16 @@ </func> <func> + <name name="write_atom_as_latin1" arity="1"/> + <fsummary>Write an atom.</fsummary> + <desc> + <p>Returns the list of characters needed to print atom + <c><anno>Atom</anno></c>. Non-Latin-1 characters + are escaped.</p> + </desc> + </func> + + <func> <name name="write_char" arity="1"/> <fsummary>Write a character.</fsummary> <desc> |