aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Herbelin2016-04-13 10:17:26 +0200
committerHugo Herbelin2016-04-27 21:55:47 +0200
commit91ce24b97ee5a8ee67ac11153ab10577c11bc9fc (patch)
tree8b370d5eddf2ca4435162093d560461e8e445ccb
parente11620ce155529c0e577304427f9b05d38e73caf (diff)
Fixing extra space in printing bullets.
-rw-r--r--printing/ppvernac.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml
index e5f3d58644..7ba1f44392 100644
--- a/printing/ppvernac.ml
+++ b/printing/ppvernac.ml
@@ -1196,7 +1196,7 @@ module Make
| Dash n -> str (String.make n '-')
| Star n -> str (String.make n '*')
| Plus n -> str (String.make n '+')
- end ++ spc())
+ end)
| VernacSubproof None ->
return (str "{")
| VernacSubproof (Some i) ->