diff options
author | Hans Bolinder <[email protected]> | 2012-12-03 12:34:04 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2013-01-02 10:15:17 +0100 |
commit | b941448860fc2220695d04d8b8806509cb053b5a (patch) | |
tree | 3ec103a7bd6791eedac019d536649a3f459e0567 /lib/edoc/src/edoc.hrl | |
parent | 300c5466a7c9cfe3ed22bba2a88ba21058406402 (diff) | |
download | otp-b941448860fc2220695d04d8b8806509cb053b5a.tar.gz otp-b941448860fc2220695d04d8b8806509cb053b5a.tar.bz2 otp-b941448860fc2220695d04d8b8806509cb053b5a.zip |
[edoc] Introduce Unicode support for source files
Diffstat (limited to 'lib/edoc/src/edoc.hrl')
-rw-r--r-- | lib/edoc/src/edoc.hrl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/edoc/src/edoc.hrl b/lib/edoc/src/edoc.hrl index 98debba4ab..44c5d6fef4 100644 --- a/lib/edoc/src/edoc.hrl +++ b/lib/edoc/src/edoc.hrl @@ -48,7 +48,8 @@ %% functions = ordset(function_name()), %% exports = ordset(function_name()), %% attributes = ordset({atom(), term()}), -%% records = [{atom(), [{atom(), term()}]}]} +%% records = [{atom(), [{atom(), term()}]}], +%% encoding = epp:source_encoding()} %% ordset(T) = sets:ordset(T) %% function_name(T) = {atom(), integer()} @@ -57,7 +58,8 @@ functions = [], exports = [], attributes = [], - records = [] + records = [], + encoding = latin1 }). %% Environment for generating documentation data |