summaryrefslogtreecommitdiff
path: root/tactics/refine.ml
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2008-08-08 13:18:42 +0200
committerGravatar Stephane Glondu <steph@glondu.net>2008-08-08 13:18:42 +0200
commit870075f34dd9fa5792bfbf413afd3b96f17e76a0 (patch)
tree0c647056de1832cf1dba5ba58758b9121418e4be /tactics/refine.ml
parenta0cfa4f118023d35b767a999d5a2ac4b082857b4 (diff)
Imported Upstream version 8.2~beta4+dfsgupstream/8.2.beta4+dfsg
Diffstat (limited to 'tactics/refine.ml')
-rw-r--r--tactics/refine.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tactics/refine.ml b/tactics/refine.ml
index 84e9dccc..7ed58f6f 100644
--- a/tactics/refine.ml
+++ b/tactics/refine.ml
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: refine.ml 9841 2007-05-19 21:13:42Z herbelin $ *)
+(* $Id: refine.ml 11309 2008-08-06 10:30:35Z herbelin $ *)
(* JCF -- 6 janvier 1998 EXPERIMENTAL *)
@@ -229,7 +229,7 @@ let rec compute_metamap env sigma c = match kind_of_term c with
(* Produit. Est-ce bien exact ? *)
| Prod (_,_,_) ->
if occur_meta c then
- error "Refine: proof term contains metas in a product"
+ error "refine: proof term contains metas in a product."
else
TH (c,[],[])
@@ -330,7 +330,7 @@ let rec tcc_aux subst (TH (c,mm,sgp) as _th) gl =
| Fix ((ni,_),(fi,ai,_)) , _ ->
let out_name = function
| Name id -> id
- | _ -> error "recursive functions must have names !"
+ | _ -> error "Recursive functions must have names."
in
let fixes = array_map3 (fun f n c -> (out_name f,succ n,c)) fi ni ai in
tclTHENS
@@ -345,7 +345,7 @@ let rec tcc_aux subst (TH (c,mm,sgp) as _th) gl =
| CoFix (_,(fi,ai,_)) , _ ->
let out_name = function
| Name id -> id
- | _ -> error "recursive functions must have names !"
+ | _ -> error "Recursive functions must have names."
in
let cofixes = array_map2 (fun f c -> (out_name f,c)) fi ai in
tclTHENS