aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorherbelin2008-10-19 16:15:12 +0000
committerherbelin2008-10-19 16:15:12 +0000
commitcddb721edc8c2e61b29a64349cd199c0dfce3d11 (patch)
tree37d3e221e4402214c63f2bffa46ff9e0152f41c1 /dev
parentadd39fd4566c0e00293c2082077d08fb21178607 (diff)
- Export de pattern_ident vers les ARGUMENT EXTEND and co.
- Extension du test de réversibilité acyclique des notations dures aux notations de type abbréviation (du genre inhabited A := A). - Ajout options Local/Global à Transparent/Opaque. - Retour au comportement 8.1 pour "move" (dependant par défaut et mot-clé dependent retiré). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@11472 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'dev')
-rw-r--r--dev/top_printers.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/top_printers.ml b/dev/top_printers.ml
index a2285015dc..d7d2f6d8ea 100644
--- a/dev/top_printers.ml
+++ b/dev/top_printers.ml
@@ -340,7 +340,8 @@ let rec pr_argument_type = function
| StringArgType -> str"string"
| PreIdentArgType -> str"pre-ident"
| IntroPatternArgType -> str"intro-pattern"
- | IdentArgType -> str"ident"
+ | IdentArgType true -> str"ident"
+ | IdentArgType false -> str"pattern_ident"
| VarArgType -> str"var"
| RefArgType -> str"ref"
(* Specific types *)