aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorherbelin2005-12-21 15:06:07 +0000
committerherbelin2005-12-21 15:06:07 +0000
commita36feecff63129e9049cb468ac1b0258442c01a7 (patch)
treeadf86b6c2ce6c5a2247d0cfc6185738bcf9fbddf /tactics
parent2199d26d640eb9ce9c7fb8c732d79da343fdc6ce (diff)
Ajout printer pr_lconstr aux extensions de syntaxe pour les arguments de tactiques
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7681 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/eauto.ml42
-rw-r--r--tactics/extraargs.ml412
2 files changed, 7 insertions, 7 deletions
diff --git a/tactics/eauto.ml4 b/tactics/eauto.ml4
index e3cb256325..e0cc336ca9 100644
--- a/tactics/eauto.ml4
+++ b/tactics/eauto.ml4
@@ -420,7 +420,7 @@ open Genarg
(* Hint bases *)
-let pr_hintbases _prc _prt = function
+let pr_hintbases _prc _prlc _prt = function
| None -> str " with *"
| Some [] -> mt ()
| Some l -> str " with " ++ Util.prlist_with_sep spc str l
diff --git a/tactics/extraargs.ml4 b/tactics/extraargs.ml4
index 3ac4c5d7dc..a31bc2cf04 100644
--- a/tactics/extraargs.ml4
+++ b/tactics/extraargs.ml4
@@ -22,7 +22,7 @@ open Tacinterp
let _ = Metasyntax.add_token_obj "<-"
let _ = Metasyntax.add_token_obj "->"
-let pr_orient _prc _prt = function
+let pr_orient _prc _prlc _prt = function
| true -> Pp.mt ()
| false -> Pp.str " <-"
@@ -34,7 +34,7 @@ ARGUMENT EXTEND orient TYPED AS bool PRINTED BY pr_orient
END
(* For Setoid rewrite *)
-let pr_morphism_signature _ _ = Setoid_replace.pr_morphism_signature
+let pr_morphism_signature _ _ _ = Setoid_replace.pr_morphism_signature
ARGUMENT EXTEND morphism_signature
TYPED AS morphism_signature
@@ -48,9 +48,9 @@ ARGUMENT EXTEND morphism_signature
[ let l,out = s in (None,c)::l,out ]
END
-let pr_gen prc _ c = prc c
+let pr_gen prc _prlc _prtac c = prc c
-let pr_rawc _ _ raw = Ppconstr.pr_rawconstr raw
+let pr_rawc _prc _prlc _prtac raw = Ppconstr.pr_rawconstr raw
let interp_raw _ _ (t,_) = t
@@ -87,8 +87,8 @@ let pr_gen_place pr_id = function
| HypLocation (id,InHypValueOnly) ->
str "in (Value of " ++ pr_id id ++ str ")"
-let pr_loc_place _ _ = pr_gen_place (fun (_,id) -> Nameops.pr_id id)
-let pr_place _ _ = pr_gen_place Nameops.pr_id
+let pr_loc_place _ _ _ = pr_gen_place (fun (_,id) -> Nameops.pr_id id)
+let pr_place _ _ _ = pr_gen_place Nameops.pr_id
let intern_place ist = function
ConclLocation () -> ConclLocation ()