diff options
author | Hans Bolinder <[email protected]> | 2013-03-13 14:13:45 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-04-19 15:28:26 +0200 |
commit | 00e4296716ee87466aaba1c4bffcacd97bd2ffe5 (patch) | |
tree | dc89f0c1398a0946e7f3ff9d624ff461c63ff81d | |
parent | 108314a813a4c915973a51f1d22f4406ed52e5c2 (diff) | |
download | otp-00e4296716ee87466aaba1c4bffcacd97bd2ffe5.tar.gz otp-00e4296716ee87466aaba1c4bffcacd97bd2ffe5.tar.bz2 otp-00e4296716ee87466aaba1c4bffcacd97bd2ffe5.zip |
Change the default encoding of Erlang files to UTF-8
-rw-r--r-- | lib/stdlib/src/epp.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/epp.erl b/lib/stdlib/src/epp.erl index e31cd63f69..64ee456b71 100644 --- a/lib/stdlib/src/epp.erl +++ b/lib/stdlib/src/epp.erl @@ -219,7 +219,7 @@ parse_file(Epp) -> [{eof,Location}] end. --define(DEFAULT_ENCODING, latin1). +-define(DEFAULT_ENCODING, utf8). -spec default_encoding() -> source_encoding(). |