[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: gaf.git: branch: master updated (1.6.0-20091004-33-g39209cd)
The branch, master has been updated
via 39209cd034abc4059e4cda6590be158dc366e787 (commit)
from 03acdbfaadaa35d11cf510ea4651b47584178514 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
libgeda/src/o_path_basic.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
=================
Commit Messages
=================
commit 39209cd034abc4059e4cda6590be158dc366e787
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>
libgeda: Fix postscript output issue with unclosed paths
Continues the fix from commit 012a3c3ddf55b0260b296476fa7d047af88818f7
Ensure we always have a space before the "fill" command in the output
postscript.
:100644 100644 3d8c40d... 7f3174d... M libgeda/src/o_path_basic.c
=========
Changes
=========
commit 39209cd034abc4059e4cda6590be158dc366e787
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>
libgeda: Fix postscript output issue with unclosed paths
Continues the fix from commit 012a3c3ddf55b0260b296476fa7d047af88818f7
Ensure we always have a space before the "fill" command in the output
postscript.
diff --git a/libgeda/src/o_path_basic.c b/libgeda/src/o_path_basic.c
index 3d8c40d..7f3174d 100644
--- a/libgeda/src/o_path_basic.c
+++ b/libgeda/src/o_path_basic.c
@@ -773,7 +773,7 @@ static void o_path_print_filled (TOPLEVEL *toplevel, FILE *fp, PATH *path,
switch (section->code) {
case PATH_MOVETO:
- fprintf (fp, "closepath ");
+ fprintf (fp, "closepath");
/* Fall through */
case PATH_MOVETO_OPEN:
fprintf (fp, "%i %i moveto",
@@ -790,12 +790,12 @@ static void o_path_print_filled (TOPLEVEL *toplevel, FILE *fp, PATH *path,
section->x3 - origin_x, section->y3 - origin_y);
break;
case PATH_END:
- fprintf (fp, "closepath ");
+ fprintf (fp, "closepath");
break;
}
}
- fprintf (fp, "fill\n");
+ fprintf (fp, " fill\n");
}
_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs