aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/vernacentries.ml
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2014-04-08 20:01:41 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2014-04-08 20:01:41 +0200
commiteb15c59bb2f79f0154a0c37e43cdf4e90235c053 (patch)
treeb0f80282fc500780f6c89fcfc2a1c074bfc5c16f /toplevel/vernacentries.ml
parent9d2b4f62ed6faa01c94945b35087cda47f1b1570 (diff)
Add an option -Q (tentative name).
This option complements -I-as and -R. As the two other options, it adds a new loadpath, but contrarily to them, files are not looked into the directory unless fully qualified.
Diffstat (limited to 'toplevel/vernacentries.ml')
-rw-r--r--toplevel/vernacentries.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/toplevel/vernacentries.ml b/toplevel/vernacentries.ml
index b948a0535..1854e1126 100644
--- a/toplevel/vernacentries.ml
+++ b/toplevel/vernacentries.ml
@@ -857,7 +857,7 @@ let vernac_add_loadpath isrec pdir ldiropt =
let pdir = expand pdir in
let alias = Option.default Nameops.default_root_prefix ldiropt in
(if isrec then Mltop.add_rec_path else Mltop.add_path)
- ~unix_path:pdir ~coq_root:alias
+ ~unix_path:pdir ~coq_root:alias ~implicit:true
let vernac_remove_loadpath path =
Loadpath.remove_load_path (expand path)