aboutsummaryrefslogtreecommitdiff
path: root/parsing/g_constr.mlg
diff options
context:
space:
mode:
authorHugo Herbelin2019-11-11 09:57:40 +0100
committerHugo Herbelin2019-11-11 10:06:15 +0100
commit1e5bae9d78192e3f0c5d7e25ab7e64fdc605316f (patch)
treebaabbbb92176e508d6a06bdda8fc10f5e396f9be /parsing/g_constr.mlg
parent69b91851ed5d18f1ca34ef2597f0cf342c10a124 (diff)
Miscellaneous improvements of the syntax of records.
- only one space instead of two when printing "{| |}" - removing a redundant clause in the grammar of record_patterns
Diffstat (limited to 'parsing/g_constr.mlg')
-rw-r--r--parsing/g_constr.mlg1
1 files changed, 0 insertions, 1 deletions
diff --git a/parsing/g_constr.mlg b/parsing/g_constr.mlg
index 470782a7dc..d377bd8561 100644
--- a/parsing/g_constr.mlg
+++ b/parsing/g_constr.mlg
@@ -393,7 +393,6 @@ GRAMMAR EXTEND Gram
;
record_patterns:
[ [ p = record_pattern; ";"; ps = record_patterns -> { p :: ps }
- | p = record_pattern; ";" -> { [p] }
| p = record_pattern-> { [p] }
| -> { [] }
] ]