diff options
| author | Hugo Herbelin | 2019-11-11 09:57:40 +0100 |
|---|---|---|
| committer | Hugo Herbelin | 2019-11-11 10:06:15 +0100 |
| commit | 1e5bae9d78192e3f0c5d7e25ab7e64fdc605316f (patch) | |
| tree | baabbbb92176e508d6a06bdda8fc10f5e396f9be /printing | |
| parent | 69b91851ed5d18f1ca34ef2597f0cf342c10a124 (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 'printing')
| -rw-r--r-- | printing/ppconstr.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/printing/ppconstr.ml b/printing/ppconstr.ml index 5ed96dd5e3..2da163b8ee 100644 --- a/printing/ppconstr.ml +++ b/printing/ppconstr.ml @@ -249,7 +249,8 @@ let tag_var = tag Tag.variable let pp (c, p) = pr_reference c ++ spc() ++ str ":=" ++ pr_patt spc (lpatrec, Any) p in - str "{| " ++ prlist_with_sep pr_semicolon pp l ++ str " |}", lpatrec + (if l = [] then str "{| |}" + else str "{| " ++ prlist_with_sep pr_semicolon pp l ++ str " |}"), lpatrec | CPatAlias (p, na) -> pr_patt mt (las,E) p ++ str " as " ++ pr_lname na, las |
