aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/internal_doc/dec.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-04-17 09:03:00 +0200
committerBjörn Gustavsson <[email protected]>2013-04-17 09:03:00 +0200
commitd988c8ebc8ec0349413a99ce1296905f83d87546 (patch)
tree82e8d2f413a2bf124d6483fd9d8e191233f62e63 /erts/emulator/internal_doc/dec.erl
parent74fdfd48d59393b6f0dfb53f343645133675c64b (diff)
parent05a646a0844e8cf25045bc9388094c799c21538d (diff)
downloadotp-d988c8ebc8ec0349413a99ce1296905f83d87546.tar.gz
otp-d988c8ebc8ec0349413a99ce1296905f83d87546.tar.bz2
otp-d988c8ebc8ec0349413a99ce1296905f83d87546.zip
Merge branch 'bjorn/fix-encoding/OTP-11041' into maint
* bjorn/fix-encoding/OTP-11041: Encode Erlang source files with non-ascii characters in UTF-8
Diffstat (limited to 'erts/emulator/internal_doc/dec.erl')
-rw-r--r--erts/emulator/internal_doc/dec.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/internal_doc/dec.erl b/erts/emulator/internal_doc/dec.erl
index 0315f2a52d..255018abe0 100644
--- a/erts/emulator/internal_doc/dec.erl
+++ b/erts/emulator/internal_doc/dec.erl
@@ -1,3 +1,4 @@
+%% -*- coding: utf-8 -*-
%%
%% %CopyrightBegin%
%%
@@ -25,10 +26,10 @@
%% {RevList,Translation}
%% Where 'RevList' is a reversed list of the denormalized repressentation of
%% the character 'Translation'. An example would be the swedish character
-%% '�', which would be represented in the file as:
+%% 'ö', which would be represented in the file as:
%% {[776,111],246}, as the denormalized representation of codepoint 246
%% is [111,776] (i.e an 'o' followed by the "double dot accent character 776),
-%% while '�' instead is represented as {[776,97],228}, as the denormalized
+%% while 'ä' instead is represented as {[776,97],228}, as the denormalized
%% form would be [97,776] (same accent but an 'a' instead).
%% The datafile is generated from the table on Apple's developer connection
%% http://developer.apple.com/library/mac/#technotes/tn/tn1150table.html