diff options
| author | Alasdair Armstrong | 2018-08-07 15:47:21 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2018-08-07 15:47:21 +0100 |
| commit | e3933fd35222995a3b44015aa288fdf34696bc8a (patch) | |
| tree | b9cf76d17b84d48be8fdbc36357f6b80b12cf32d /src/latex.ml | |
| parent | 88fbe39a24a9432a58bc9998130f0b075344ef4c (diff) | |
Revert "Warnings: deal with all the deprecation warnings"
One day we will be free from the 4.02.3 menace, but today is not that day. :(
This should fix Sail on Jenkins
This reverts commit 86e29bcbb1597c4ef1f6cae8edbeed42f9a31414.
Diffstat (limited to 'src/latex.ml')
| -rw-r--r-- | src/latex.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latex.ml b/src/latex.ml index 39db43db..0520d074 100644 --- a/src/latex.ml +++ b/src/latex.ml @@ -126,7 +126,7 @@ let rec latex_command ?prefix:(prefix="") ?label:(label=None) dir cmd no_loc ((l | Some l -> Printf.sprintf "\\label{%s}" l in let cmd = !opt_prefix_latex ^ prefix ^ cmd in - let lcmd = String.lowercase_ascii cmd in (* lowercase to avoid file names differing only by case *) + let lcmd = String.lowercase cmd in (* lowercase to avoid file names differing only by case *) if StringSet.mem lcmd !commands then latex_command ~label:label dir (cmd ^ "v") no_loc annot else |
