diff options
| author | Hugo Herbelin | 2016-04-13 07:29:51 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2016-04-27 21:55:47 +0200 |
| commit | d91a1aa62edad53b41fbb7cb6f6a841f03ebcde4 (patch) | |
| tree | b42cfcb38a7a4f62df47e6f27e2478b19afe534e | |
| parent | 094ed756fcef1ac5118dc5134a7369252efec933 (diff) | |
Fixing extra space in printing abbreviations (SyntaxDefinition).
| -rw-r--r-- | printing/ppvernac.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index 6670aa41ab..396add2646 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -1001,7 +1001,7 @@ module Make return ( hov 2 (keyword "Notation" ++ spc () ++ pr_lident id ++ spc () ++ - prlist (fun x -> spc() ++ pr_id x) ids ++ str":=" ++ pr_constrarg c ++ + prlist_with_sep spc pr_id ids ++ str":=" ++ pr_constrarg c ++ pr_syntax_modifiers (match onlyparsing with None -> [] | Some v -> [SetOnlyParsing v])) ) |
