diff options
| author | Hugo Herbelin | 2016-04-27 22:13:03 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2016-04-27 22:13:03 +0200 |
| commit | 080f60258407d8cf0f8991f763bafe1b6363ac57 (patch) | |
| tree | d23af7d2f4a2f1be7c22ee453807c4cc0d14547f | |
| parent | 8e3561074981f115e7767496de6cdb144efcedca (diff) | |
Revert "Fixing extra space in printing abbreviations (SyntaxDefinition)."
This reverts commit d91a1aa62edad53b41fbb7cb6f6a841f03ebcde4.
| -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 396add2646..6670aa41ab 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_with_sep spc pr_id ids ++ str":=" ++ pr_constrarg c ++ + prlist (fun x -> spc() ++ pr_id x) ids ++ str":=" ++ pr_constrarg c ++ pr_syntax_modifiers (match onlyparsing with None -> [] | Some v -> [SetOnlyParsing v])) ) |
