aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/pcoq.ml4
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-07-04 16:36:02 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-07-04 16:36:02 +0000
commit756bd5078f59e9344b200bb04ffe8219835c65b6 (patch)
treef19e06b2f47293d41eb48f885b2270d4aa7fe8cd /parsing/pcoq.ml4
parentc71fca0c5ed83ff6995ba3dca6afd398829a114e (diff)
Que le niveau 100 soit associatif à droite dans operconst et à gauche dans pattern pose problème pour les notations ajoutées à ce niveau; qu'à cela ne tienne, l'associativité du niveau 100 pour pattern n'est pas importante : on le rend RIGHTA
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9008 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing/pcoq.ml4')
-rw-r--r--parsing/pcoq.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/pcoq.ml4 b/parsing/pcoq.ml4
index 40e456061..abe0d8426 100644
--- a/parsing/pcoq.ml4
+++ b/parsing/pcoq.ml4
@@ -485,7 +485,7 @@ let default_levels =
let default_pattern_levels =
[200,Gramext.RightA;
- 100,Gramext.LeftA;
+ 100,Gramext.RightA;
99,Gramext.RightA;
10,Gramext.LeftA;
0,Gramext.RightA]