From 5dc8187aa8e6b481338035a022fec4025a25eb33 Mon Sep 17 00:00:00 2001 From: Matthieu Sozeau Date: Fri, 12 Sep 2014 16:50:17 +0200 Subject: Fix base_include due to change in argument order of env and evar_map --- dev/base_include | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/base_include') diff --git a/dev/base_include b/dev/base_include index a5ccf24aad..2699551a5f 100644 --- a/dev/base_include +++ b/dev/base_include @@ -188,7 +188,7 @@ let e s = Constrintern.intern_constr (Global.env()) (parse_constr s);; implicit syntax *) let constr_of_string s = - Constrintern.interp_constr Evd.empty (Global.env()) (parse_constr s);; + Constrintern.interp_constr (Global.env()) Evd.empty (parse_constr s);; (* get the body of a constant *) @@ -207,7 +207,7 @@ let get_nth_goal n = nth_goal_of_pftreestate n (Pfedit.get_pftreestate ());; let current_goal () = get_nth_goal 1;; *) let pf_e gl s = - Constrintern.interp_constr (project gl) (pf_env gl) (parse_constr s);; + Constrintern.interp_constr (pf_env gl) (project gl) (parse_constr s);; (* Set usual printing since the global env is available from the tracer *) let _ = Constrextern.in_debugger := false -- cgit v1.2.3