diff options
| author | barras | 2002-02-15 18:02:05 +0000 |
|---|---|---|
| committer | barras | 2002-02-15 18:02:05 +0000 |
| commit | 1e6c3e993fd33d01713aae34a8cefbc210b3898a (patch) | |
| tree | 2f8e2aba2c50587146ac4100bb8bf3c426fca65f /contrib/xml/xmlcommand.ml4 | |
| parent | 0eff88d5a9ad9279a4e68fdb6e210c6ea671b613 (diff) | |
petits changements cosmetiques sur les tactiques
+ Clear independant de l'ordre des hypotheses, et substituant les hypotheses
definies
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2481 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/xml/xmlcommand.ml4')
| -rw-r--r-- | contrib/xml/xmlcommand.ml4 | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/contrib/xml/xmlcommand.ml4 b/contrib/xml/xmlcommand.ml4 index 7b6303130b..b794b28936 100644 --- a/contrib/xml/xmlcommand.ml4 +++ b/contrib/xml/xmlcommand.ml4 @@ -5,16 +5,16 @@ (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (***********************************************************************) -(******************************************************************************) -(* *) -(* PROJECT HELM *) -(* *) -(* A module to print Coq objects in XML *) -(* *) -(* Claudio Sacerdoti Coen <sacerdot@cs.unibo.it> *) -(* 06/12/2000 *) -(* *) -(******************************************************************************) +(*****************************************************************************) +(* *) +(* PROJECT HELM *) +(* *) +(* A module to print Coq objects in XML *) +(* *) +(* Claudio Sacerdoti Coen <sacerdot@cs.unibo.it> *) +(* 06/12/2000 *) +(* *) +(*****************************************************************************) (* CONFIGURATION PARAMETERS *) @@ -195,11 +195,11 @@ let add_to_pvars x = match x with Definition (v, bod, typ) -> cumenv := - E.push_named_decl (Names.id_of_string v, Some bod, typ) !cumenv ; + E.push_named (Names.id_of_string v, Some bod, typ) !cumenv ; v | Assumption (v, typ) -> cumenv := - E.push_named_decl (Names.id_of_string v, None, typ) !cumenv ; + E.push_named (Names.id_of_string v, None, typ) !cumenv ; v in match !pvars with |
