diff options
author | Hans Bolinder <[email protected]> | 2013-01-01 16:56:22 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-01-02 10:15:18 +0100 |
commit | c44bc4f840f85c677eb86f00dc42c1648aaec0a6 (patch) | |
tree | f3e4bb6337559d73af91cfd75f647f23a778b3c0 /lib/stdlib/src/io.erl | |
parent | 6f86a3a6ba3b975016aab80b3f5b3f2807304b24 (diff) | |
download | otp-c44bc4f840f85c677eb86f00dc42c1648aaec0a6.tar.gz otp-c44bc4f840f85c677eb86f00dc42c1648aaec0a6.tar.bz2 otp-c44bc4f840f85c677eb86f00dc42c1648aaec0a6.zip |
Make sure the Erlang shell prompt can handle Unicode
Diffstat (limited to 'lib/stdlib/src/io.erl')
-rw-r--r-- | lib/stdlib/src/io.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/io.erl b/lib/stdlib/src/io.erl index bc1727c027..ecf2aeb375 100644 --- a/lib/stdlib/src/io.erl +++ b/lib/stdlib/src/io.erl @@ -73,9 +73,9 @@ o_request(Io, Request, Func) -> put_chars(Chars) -> put_chars(default_output(), Chars). --spec put_chars(IoDevice, IoData) -> 'ok' when +-spec put_chars(IoDevice, CharData) -> 'ok' when IoDevice :: device(), - IoData :: unicode:chardata(). + CharData :: unicode:chardata(). put_chars(Io, Chars) -> o_request(Io, {put_chars,unicode,Chars}, put_chars). |