aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/coq_tex.ml
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-07-29 19:58:39 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-07-29 19:58:39 +0200
commit9a5fb78ef3c7c5d4f568a4d04e169475e9105def (patch)
tree0faa6e34dab303a0b0306cef94600a3ec2f3184d /tools/coq_tex.ml
parentffb2788b92323901c1024d1eae221e4beb4b6670 (diff)
Make coq-tex more robust with respect to the (non-)command on the last line.
Diffstat (limited to 'tools/coq_tex.ml')
-rw-r--r--tools/coq_tex.ml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/coq_tex.ml b/tools/coq_tex.ml
index 9c91889a0..f65708698 100644
--- a/tools/coq_tex.ml
+++ b/tools/coq_tex.ml
@@ -55,7 +55,10 @@ let extract texfile inputv =
("Set Printing Width " ^ (string_of_int !linelen) ^".\n");
outside ()
with End_of_file ->
- begin close_in chan_in; close_out chan_out end
+ (* a dummy command, just in case the last line was a comment *)
+ output_string chan_out "Set Printing Width 78.\n";
+ close_in chan_in;
+ close_out chan_out
(* Second pass: insert the answers of Coq from [coq_output] into the
* TeX file [texfile]. The result goes in file [result]. *)