diff options
author | Maxence Guesdon <maxence.guesdon@inria.fr> | 2009-12-18 12:10:56 +0000 |
---|---|---|
committer | Maxence Guesdon <maxence.guesdon@inria.fr> | 2009-12-18 12:10:56 +0000 |
commit | 1a69d6b1567d245f18e20a37c58f7a90baad232e (patch) | |
tree | 7c245b798920e53cbd96a7d32c2e278c571153cc | |
parent | f2f0f0efeca3748a806f0bc3d9030d77594446fa (diff) |
PR#4913: fix output of index file wehn given a custom index text
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9479 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | ocamldoc/odoc_html.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocamldoc/odoc_html.ml b/ocamldoc/odoc_html.ml index 1d58787df..bcf264716 100644 --- a/ocamldoc/odoc_html.ml +++ b/ocamldoc/odoc_html.ml @@ -2341,9 +2341,9 @@ class html = bs b "<br/>"; self#html_of_Module_list b (List.map (fun m -> m.m_name) module_list); - bs b "</body>\n</html>" | Some i -> self#html_of_info ~indent: false b info ); + bs b "</body>\n</html>"; Buffer.output_buffer chanout b; close_out chanout with |