diff options
| author | Maxime Dénès | 2016-12-02 17:29:15 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2016-12-02 17:29:15 +0100 |
| commit | e83ffcd53acdebfbbd927b3c9b48a0d1ad6ca9e5 (patch) | |
| tree | 26a9b934f0bf1f9dc4d1209cf613d60ad4a82b7b /plugins | |
| parent | fa1e627e12831417694b4fb538154721111741b5 (diff) | |
| parent | 7e8434765ca1289aeb3a5200e791c9ced0acfde4 (diff) | |
Merge branch 'pr/367' into v8.6
Parts of PR#367: Fixing the "beautifier" and checking the
parsing-printing reversibility
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/firstorder/g_ground.ml4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/firstorder/g_ground.ml4 b/plugins/firstorder/g_ground.ml4 index 95095b09cb..43fac8ad83 100644 --- a/plugins/firstorder/g_ground.ml4 +++ b/plugins/firstorder/g_ground.ml4 @@ -116,9 +116,9 @@ open Pp open Genarg open Ppconstr open Printer -let pr_firstorder_using_raw _ _ _ l = str "using " ++ prlist_with_sep pr_comma pr_reference l -let pr_firstorder_using_glob _ _ _ l = str "using " ++ prlist_with_sep pr_comma (pr_or_var (fun x -> (pr_global (snd x)))) l -let pr_firstorder_using_typed _ _ _ l = str "using " ++ prlist_with_sep pr_comma pr_global l +let pr_firstorder_using_raw _ _ _ = Pptactic.pr_auto_using pr_reference +let pr_firstorder_using_glob _ _ _ = Pptactic.pr_auto_using (pr_or_var (fun x -> pr_global (snd x))) +let pr_firstorder_using_typed _ _ _ = Pptactic.pr_auto_using pr_global let warn_deprecated_syntax = CWarnings.create ~name:"firstorder-deprecated-syntax" ~category:"deprecated" |
