Skip to content

Commit

Permalink
Merge pull request #121 from SkySkimmer/search-restr
Browse files Browse the repository at this point in the history
Adapt to coq/coq#17928 (Search uses search_restriction instead of bool)
  • Loading branch information
ppedrot authored Aug 16, 2023
2 parents 8b42915 + 8aff39b commit 3433d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphdepend.mlg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let filename = ref "graph.dpd"
let get_dirlist_grefs dirlist =
let selected_gref = ref [] in
let select gref kind env constr =
if Search.module_filter (dirlist, false) gref kind env (Evd.from_env env) constr then
if Search.module_filter (SearchInside dirlist) gref kind env (Evd.from_env env) constr then
(debug (str "Select " ++ Printer.pr_global gref);
selected_gref := gref::!selected_gref)
in
Expand Down

0 comments on commit 3433d7e

Please sign in to comment.