summaryrefslogtreecommitdiff
path: root/ocamldoc/odoc_comments.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocamldoc/odoc_comments.ml')
-rw-r--r--ocamldoc/odoc_comments.ml7
1 files changed, 3 insertions, 4 deletions
diff --git a/ocamldoc/odoc_comments.ml b/ocamldoc/odoc_comments.ml
index 54650acb51..51873e305d 100644
--- a/ocamldoc/odoc_comments.ml
+++ b/ocamldoc/odoc_comments.ml
@@ -333,12 +333,11 @@ let info_of_string s =
None -> dummy
| Some i -> i
-let info_of_comment_file f =
+let info_of_comment_file modlist f =
try
let s = Odoc_misc.input_file_as_string f in
- info_of_string s
+ let i = info_of_string s in
+ Odoc_cross.assoc_comments_info "" modlist i
with
Sys_error s ->
failwith s
-
-(* eof $Id$ *)