diff options
| author | msozeau | 2008-06-27 15:53:52 +0000 |
|---|---|---|
| committer | msozeau | 2008-06-27 15:53:52 +0000 |
| commit | e91339affd54f500e7b08accc5f1feee936a5440 (patch) | |
| tree | 5ea440c176f83df92209631a65545da2dc21a57d | |
| parent | 64ac193d372ef8428e85010a862ece55ac011192 (diff) | |
(Partial) fix for bug #1892, adding a missing newline.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11185 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | toplevel/toplevel.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/toplevel.ml b/toplevel/toplevel.ml index cf3e1f54bb..e609c7a6e8 100644 --- a/toplevel/toplevel.ml +++ b/toplevel/toplevel.ml @@ -160,7 +160,7 @@ let print_location_in_file s inlibrary fname loc = try let (line, bol) = line_of_pos 1 0 0 in close_in ic; - (errstrm ++ str"File " ++ str ("\""^fname^"\"") ++ + (errstrm ++ fnl () ++ str"File " ++ str ("\""^fname^"\"") ++ str", line " ++ int line ++ str", characters " ++ Cerrors.print_loc (make_loc (bp-bol,ep-bol)) ++ str":" ++ fnl ()) with e -> (close_in ic; (errstrm ++ str", invalid location." ++ fnl ())) |
