diff options
author | Lukas Larsson <[email protected]> | 2018-08-16 10:36:41 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-08-16 10:36:41 +0200 |
commit | cb7b7275fdaf08429468a89142763d21a97370c2 (patch) | |
tree | e5ac4381e48da427521ed555b81f361fc82fc461 | |
parent | dacfafd97ed955b9c567f0efbc8553286360b0d2 (diff) | |
parent | ce7e5e9c26efa1f907b152a4f6d223e0080542d1 (diff) | |
download | otp-cb7b7275fdaf08429468a89142763d21a97370c2.tar.gz otp-cb7b7275fdaf08429468a89142763d21a97370c2.tar.bz2 otp-cb7b7275fdaf08429468a89142763d21a97370c2.zip |
Merge pull request #1930 from marianoguerra/fix-emd2exml-encoding-value-gen-maint
fix generated encoding for xml files generated with emd2exml
-rwxr-xr-x | make/emd2exml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/emd2exml.in b/make/emd2exml.in index 57bcaba24d..24837696f4 100755 --- a/make/emd2exml.in +++ b/make/emd2exml.in @@ -1214,7 +1214,7 @@ complete_output(#state{out = Out} = S) -> complete_output(S, [], Out) -> S#state{delayed_array = [], - out = ["<?xml version=\"1.0\" encoding=\"utf8\" ?>", nl(), + out = ["<?xml version=\"1.0\" encoding=\"utf-8\" ?>", nl(), "<!DOCTYPE chapter SYSTEM \"chapter.dtd\">", nl(), Out]}; complete_output(S, [{delayed, IX}|Rest], Out) -> |