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_data.erl | |
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_data.erl')
-rw-r--r-- | lib/edoc/src/edoc_data.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/edoc/src/edoc_data.erl b/lib/edoc/src/edoc_data.erl index 624f9177a2..f88ba05f4b 100644 --- a/lib/edoc/src/edoc_data.erl +++ b/lib/edoc/src/edoc_data.erl @@ -83,7 +83,8 @@ module(Module, Entries, Env, Opts) -> AllTags = get_all_tags(Entries), Functions = function_filter(Entries, Opts), Out = {module, ([{name, Name}, - {root, Env#env.root}] + {root, Env#env.root}, + {encoding, Module#module.encoding}] ++ case is_private(HeaderTags) of true -> [{private, "yes"}]; false -> [] |