aboutsummaryrefslogtreecommitdiff
path: root/printing/printer.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-03-20 21:21:32 +0100
committerPierre-Marie Pédrot2016-03-20 21:23:23 +0100
commit6afe572a4448e50f18e408097dd9ed03cc432d39 (patch)
tree44cb29daa6147426419392e48b9d7c33c7c5caf0 /printing/printer.ml
parent48e4831fa56e3b0acd92aabdb78847696b84daf7 (diff)
parent6d87fd89abdf17ddd4864386d66bb06f0d0a151f (diff)
Moving the lowest parts of pretyping/ (Evarutil & Proofview) to engine/.
Some functions exported by Evarutil essentially used by the unification engine were moved to a new file Evardefine. Their presence in Evarutil was not making much sense. Moreover, the Refine module of the Proofview file was turned into a proper file in pretyping/. This is because this part of the code was relying on the typing primitives from Pretyping.
Diffstat (limited to 'printing/printer.ml')
-rw-r--r--printing/printer.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/printer.ml b/printing/printer.ml
index b89005887f..2e67fa5ff1 100644
--- a/printing/printer.ml
+++ b/printing/printer.ml
@@ -50,7 +50,7 @@ let pr_lconstr_core goal_concl_style env sigma t =
let pr_lconstr_env env = pr_lconstr_core false env
let pr_constr_env env = pr_constr_core false env
-let _ = Hook.set Proofview.Refine.pr_constr pr_constr_env
+let _ = Hook.set Refine.pr_constr pr_constr_env
let pr_lconstr_goal_style_env env = pr_lconstr_core true env
let pr_constr_goal_style_env env = pr_constr_core true env