diff options
| author | ppedrot | 2012-09-18 16:00:57 +0000 |
|---|---|---|
| committer | ppedrot | 2012-09-18 16:00:57 +0000 |
| commit | 451ecf7eb4fbd8ffa2058cdb8bb57e0b25a70b59 (patch) | |
| tree | c206b7a87f334ef189765b5fe0262dd4d8d1d9bc /tactics/tactics.ml | |
| parent | bf08866eabad4408de975bae92f3b3c1f718322c (diff) | |
More cleaning in CArray...
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15819 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/tactics.ml')
| -rw-r--r-- | tactics/tactics.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index bdf2ea96d3..a29ab24bac 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -2461,7 +2461,7 @@ let abstract_args gl generalize_vars dep id defined f args = let parvars = ids_of_constr ~all:true Idset.empty f' in if not (linear parvars args') then true, f, args else - match Array.find_i (fun i x -> not (isVar x) || is_defined_variable env (destVar x)) args' with + match Array.findi (fun i x -> not (isVar x) || is_defined_variable env (destVar x)) args' with | None -> false, f', args' | Some nonvar -> let before, after = Array.chop nonvar args' in |
