aboutsummaryrefslogtreecommitdiff
path: root/translate
diff options
context:
space:
mode:
authorherbelin2003-04-09 12:31:04 +0000
committerherbelin2003-04-09 12:31:04 +0000
commit2a0a543235f0c4cc5adc15629453e9a5dc99227d (patch)
treed2a0717e20558c306ea39b11661ece1f2531e2e6 /translate
parent25f601985661272aa7334a64c4e137217de351b3 (diff)
Bugs synchronisation pour gestion traduction des implicites
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3884 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'translate')
-rw-r--r--translate/ppvernacnew.ml26
1 files changed, 11 insertions, 15 deletions
diff --git a/translate/ppvernacnew.ml b/translate/ppvernacnew.ml
index dfe934b7be..bd6648bb4a 100644
--- a/translate/ppvernacnew.ml
+++ b/translate/ppvernacnew.ml
@@ -538,25 +538,22 @@ let rec pr_vernac = function
let pr_oneind (id,indpar,s,lc) =
pr_id id ++ spc() ++ pr_sbinders indpar ++ str":" ++ spc() ++
pr_lconstr s ++ str" :=" ++ pr_constructor_list lc in
- let p = prlist_with_sep (fun _ -> fnl() ++ str"with ") pr_oneind l in
hov 1
- ((if f then str"Inductive" else str"CoInductive") ++ spc() ++ p)
+ ((if f then str"Inductive" else str"CoInductive") ++ spc() ++
+ prlist_with_sep (fun _ -> fnl() ++ str"with ") pr_oneind l)
| VernacFixpoint recs ->
(* Copie simplifiée de command.ml pour recalculer les implicites *)
let sigma = Evd.empty
and env0 = Global.env() in
- let fs = States.freeze() in
- (try
- List.iter
- (fun (recname,_,arityc,_) ->
- let arity = Constrintern.interp_type sigma env0 arityc in
- let _ = Declare.declare_variable recname
- (Lib.cwd(),Declare.SectionLocalAssum arity, Decl_kinds.IsAssumption Decl_kinds.Definitional) in ())
- recs
- with e ->
- States.unfreeze fs; raise e);
+ List.iter
+ (fun (recname,_,arityc,_) ->
+ let arity = Constrintern.interp_type sigma env0 arityc in
+ let _ = Declare.declare_variable recname
+ (Lib.cwd(),Declare.SectionLocalAssum arity,
+ Decl_kinds.IsAssumption Decl_kinds.Definitional) in ())
+ recs;
let pr_onerec = function
| (id,n,type_0,def0) ->
@@ -574,9 +571,8 @@ let rec pr_vernac = function
pr_id id ++ str" " ++ pr_binders bl ++ annot ++ spc()
++ pr_type_option (fun c -> spc() ++ pr_lconstr c) type_
++ str" :=" ++ brk(1,1) ++ pr_lconstr def in
- let p = prlist_with_sep (fun _ -> fnl() ++ str"with ") pr_onerec recs in
- States.unfreeze fs;
- hov 1 (str"Fixpoint" ++ spc() ++ p)
+ hov 1 (str"Fixpoint" ++ spc() ++
+ prlist_with_sep (fun _ -> fnl() ++ str"with ") pr_onerec recs)
| VernacCoFixpoint corecs ->
let pr_onecorec (id,c,def) =