aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-07-30 08:10:05 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2015-07-30 08:10:05 +0200
commit52940b19a7f47fa5022d75c5679785ac90aaa0dc (patch)
tree4efa1b42b5692d4752d0de1eb4cef8318aef145d
parent5383cdc276d9ba7f1bb05bfe5aeae0a25edbd4a4 (diff)
Remove unused variables.
-rw-r--r--tools/coq_tex.ml13
1 files changed, 1 insertions, 12 deletions
diff --git a/tools/coq_tex.ml b/tools/coq_tex.ml
index 53444cee7..26a9715ef 100644
--- a/tools/coq_tex.ml
+++ b/tools/coq_tex.ml
@@ -63,17 +63,6 @@ let extract texfile inputv =
(* Second pass: insert the answers of Coq from [coq_output] into the
* TeX file [texfile]. The result goes in file [result]. *)
-let begin_coq_example =
- Str.regexp "\\\\begin{coq_\\(example\\|example\\*\\|example\\#\\)}[ \t]*$"
-let begin_coq_eval = Str.regexp "\\\\begin{coq_eval}[ \t]*$"
-
-let has_match r s =
- try let _ = Str.search_forward r s 0 in true with Not_found -> false
-
-let percent = Str.regexp "%"
-let bang = Str.regexp "!"
-let expos = Str.regexp "^"
-
let tex_escaped s =
let dollar = "\\$" and backslash = "\\\\" and expon = "\\^" in
let delims = Str.regexp ("[_{}&%#" ^ dollar ^ backslash ^ expon ^"~ <>'`]") in
@@ -216,7 +205,7 @@ let insert texfile coq_output result =
(* Process of one TeX file *)
-let rm f = try Sys.remove f with any -> ()
+let rm f = try Sys.remove f with _ -> ()
let one_file texfile =
let inputv = Filename.temp_file "coq_tex" ".v" in