aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/base_include
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-11-15 15:24:39 +0100
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-11-15 15:24:39 +0100
commit586d015eaa3d36a315bdbdf8b11593a9d00a9a9a (patch)
tree0b4892715b8f98da325c7c0010935c22e3035035 /dev/base_include
parenta2b02cb9142984b912bf01cea09449d767326f19 (diff)
[dev] Remove deprecation warning from `base_include`
The warning created problems as OCaml restored the color printing tags when printing it, so users doing `Drop` and then `go ()` got color printing back after the warning. We should guard the console on `Drop` better, but this requires some (much needed) refactoring work in the toplevel.
Diffstat (limited to 'dev/base_include')
-rw-r--r--dev/base_include2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/base_include b/dev/base_include
index f2912e112..1c98754fd 100644
--- a/dev/base_include
+++ b/dev/base_include
@@ -231,7 +231,7 @@ let pf_e gl s =
let _ = Flags.in_debugger := false
let _ = Flags.in_toplevel := true
let _ = Constrextern.set_extern_reference
- (fun ?loc _ r -> Libnames.Qualid (loc,Nametab.shortest_qualid_of_global Idset.empty r));;
+ (fun ?loc _ r -> Libnames.Qualid (loc,Nametab.shortest_qualid_of_global Id.Set.empty r));;
let go () = Coqloop.loop Option.(get !Coqtop.drop_last_doc)