From c28f701086339ed9b937e7f6779910ace2106cbe Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Wed, 18 Jul 2012 22:17:45 -0300 Subject: [PATCH] postscript.c (prologue): set line join style to "round" in showoutlined With the default, we get way too pointy corners in letters like "M". --- postscript.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postscript.c b/postscript.c index f1148a7..6e68c89 100644 --- a/postscript.c +++ b/postscript.c @@ -1085,7 +1085,7 @@ fprintf(file, fprintf(file, "/showoutlined {\n" -" gsave 2 mul setlinewidth 1 setgray\n" +" gsave 2 mul setlinewidth 1 setgray 1 setlinejoin\n" " dup false charpath flattenpath stroke grestore\n" " show } def\n");