aboutsummaryrefslogtreecommitdiff
path: root/vernac/search.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 /vernac/search.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 'vernac/search.ml')
-rw-r--r--vernac/search.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/vernac/search.ml b/vernac/search.ml
index 06554aae20..364dae7152 100644
--- a/vernac/search.ml
+++ b/vernac/search.ml
@@ -39,7 +39,7 @@ module SearchBlacklist =
let key = ["Search";"Blacklist"]
let title = "Current search blacklist : "
let member_message s b =
- str "Search blacklist does " ++ (if b then mt () else str "not ") ++ str "include " ++ str s
+ str "Search blacklist does " ++ (if b then mt () else str "not ") ++ str "include " ++ str s
end)
(* The functions iter_constructors and iter_declarations implement the behavior
@@ -330,7 +330,7 @@ let interface_search ?pstate =
in
let match_subtype (pat, flag) =
toggle
- (Constr_matching.is_matching_appsubterm ~closed:false
+ (Constr_matching.is_matching_appsubterm ~closed:false
env (Evd.from_env env) pat (EConstr.of_constr constr)) flag
in
let match_module (mdl, flag) =