aboutsummaryrefslogtreecommitdiff
path: root/checker/checker.ml
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-11-21 15:38:39 +0100
committerEmilio Jesus Gallego Arias2019-11-21 15:38:39 +0100
commitd016f69818b30b75d186fb14f440b93b0518fc66 (patch)
tree32cd948273f79a2c01ad27b4ed0244ea60d7e2f9 /checker/checker.ml
parentb680b06b31c27751a7d551d95839aea38f7fbea1 (diff)
[coq] Untabify the whole ML codebase.
We also remove trailing whitespace. Script used: ```bash for i in `find . -name '*.ml' -or -name '*.mli' -or -name '*.mlg'`; do expand -i "$i" | sponge "$i"; sed -e's/[[:space:]]*$//' -i.bak "$i"; done ```
Diffstat (limited to 'checker/checker.ml')
-rw-r--r--checker/checker.ml22
1 files changed, 11 insertions, 11 deletions
diff --git a/checker/checker.ml b/checker/checker.ml
index d08e9e698d..5f93148be6 100644
--- a/checker/checker.ml
+++ b/checker/checker.ml
@@ -29,7 +29,7 @@ let parse_dir s =
if n>=len then dirs else
let pos =
try
- String.index_from s n '.'
+ String.index_from s n '.'
with Not_found -> len
in
let dir = String.sub s n (pos-n) in
@@ -241,8 +241,8 @@ let explain_exn = function
hov 0 (str "Stack overflow")
| Match_failure(filename,pos1,pos2) ->
hov 1 (anomaly_string () ++ str "Match failure in file " ++
- guill filename ++ str " at line " ++ int pos1 ++
- str " character " ++ int pos2 ++ report ())
+ guill filename ++ str " at line " ++ int pos1 ++
+ str " character " ++ int pos2 ++ report ())
| Not_found ->
hov 0 (anomaly_string () ++ str "uncaught exception Not_found" ++ report ())
| Failure s ->
@@ -312,12 +312,12 @@ let explain_exn = function
| Assert_failure (s,b,e) ->
hov 0 (anomaly_string () ++ str "assert failure" ++ spc () ++
- (if s = "" then mt ()
- else
- (str "(file \"" ++ str s ++ str "\", line " ++ int b ++
- str ", characters " ++ int e ++ str "-" ++
- int (e+6) ++ str ")")) ++
- report ())
+ (if s = "" then mt ()
+ else
+ (str "(file \"" ++ str s ++ str "\", line " ++ int b ++
+ str ", characters " ++ int e ++ str "-" ++
+ int (e+6) ++ str ")")) ++
+ report ())
| e -> CErrors.print e (* for anomalies and other uncaught exceptions *)
let deprecated flag =
@@ -333,8 +333,8 @@ let parse_args argv =
indices_matter:=true; parse rem
| "-coqlib" :: s :: rem ->
- if not (exists_dir s) then
- fatal_error (str "Directory '" ++ str s ++ str "' does not exist") false;
+ if not (exists_dir s) then
+ fatal_error (str "Directory '" ++ str s ++ str "' does not exist") false;
Envars.set_user_coqlib s;
parse rem