aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--parsing/pptactic.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/parsing/pptactic.ml b/parsing/pptactic.ml
index 968415de1..b09f0359c 100644
--- a/parsing/pptactic.ml
+++ b/parsing/pptactic.ml
@@ -237,7 +237,7 @@ let rec pr_raw_generic prc prlc prtac prref x =
| IntOrVarArgType -> pr_arg (pr_or_var pr_int) (out_gen rawwit_int_or_var x)
| StringArgType -> spc () ++ str "\"" ++ str (out_gen rawwit_string x) ++ str "\""
| PreIdentArgType -> pr_arg str (out_gen rawwit_pre_ident x)
- | IdentArgType -> pr_arg pr_id (out_gen rawwit_ident x)
+ | IdentArgType -> pr_arg pr_id (Constrextern.v7_to_v8_id (out_gen rawwit_ident x))
| RefArgType -> pr_arg prref (out_gen rawwit_ref x)
| SortArgType -> pr_arg pr_sort (out_gen rawwit_sort x)
| ConstrArgType -> pr_arg prc (out_gen rawwit_constr x)
@@ -280,7 +280,7 @@ let rec pr_glob_generic prc prlc prtac x =
| IntOrVarArgType -> pr_arg (pr_or_var pr_int) (out_gen globwit_int_or_var x)
| StringArgType -> spc () ++ str "\"" ++ str (out_gen globwit_string x) ++ str "\""
| PreIdentArgType -> pr_arg str (out_gen globwit_pre_ident x)
- | IdentArgType -> pr_arg pr_id (out_gen globwit_ident x)
+ | IdentArgType -> pr_arg pr_id (Constrextern.v7_to_v8_id (out_gen globwit_ident x))
| RefArgType -> pr_arg (pr_or_var (pr_located pr_global)) (out_gen globwit_ref x)
| SortArgType -> pr_arg pr_sort (out_gen globwit_sort x)
| ConstrArgType -> pr_arg prc (out_gen globwit_constr x)
@@ -324,7 +324,7 @@ let rec pr_generic prc prlc prtac x =
| IntOrVarArgType -> pr_arg (pr_or_var pr_int) (out_gen wit_int_or_var x)
| StringArgType -> spc () ++ str "\"" ++ str (out_gen wit_string x) ++ str "\""
| PreIdentArgType -> pr_arg str (out_gen wit_pre_ident x)
- | IdentArgType -> pr_arg pr_id (out_gen wit_ident x)
+ | IdentArgType -> pr_arg pr_id (Constrextern.v7_to_v8_id (out_gen wit_ident x))
| RefArgType -> pr_arg pr_global (out_gen wit_ref x)
| SortArgType -> pr_arg prc (Term.mkSort (out_gen wit_sort x))
| ConstrArgType -> pr_arg prc (out_gen wit_constr x)