aboutsummaryrefslogtreecommitdiffhomepage
path: root/printing
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-04-13 07:29:51 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-06-16 17:43:28 +0200
commita43562b661115bebb9353db6ec3b2f6f8dd603ef (patch)
tree7e8fd8dd6012f2dbf8a3781ad95a1d6e82a61495 /printing
parent2a58c6bdf236108e6e6a8a3bc03629c99611576e (diff)
Fixing extra space in printing abbreviations (SyntaxDefinition).
Diffstat (limited to 'printing')
-rw-r--r--printing/ppvernac.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml
index bcd38253f..1bd053d9d 100644
--- a/printing/ppvernac.ml
+++ b/printing/ppvernac.ml
@@ -997,7 +997,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]))
)