diff options
author | Sverker Eriksson <[email protected]> | 2012-12-18 18:31:46 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-01-08 11:15:01 +0100 |
commit | e4e007afd032f7aca359d2665f91ddb12727521a (patch) | |
tree | f5e4a9bb569a8f1d4b14222199b34b332af47206 /lib/stdlib | |
parent | a9a57385f0a5648bbfeccc5e8ef0bfe2cdac80c7 (diff) | |
download | otp-e4e007afd032f7aca359d2665f91ddb12727521a.tar.gz otp-e4e007afd032f7aca359d2665f91ddb12727521a.tar.bz2 otp-e4e007afd032f7aca359d2665f91ddb12727521a.zip |
stdlib: Fix printing of unicode atoms
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/io_lib.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/io_lib.erl b/lib/stdlib/src/io_lib.erl index 513d904c39..0f1f417d01 100644 --- a/lib/stdlib/src/io_lib.erl +++ b/lib/stdlib/src/io_lib.erl @@ -276,7 +276,7 @@ write_atom(Atom) -> Chars = atom_to_list(Atom), case quote_atom(Atom, Chars) of true -> - write_string(Chars, $'); %' + write_unicode_string(Chars, $'); %' false -> Chars end. |