[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: stable-1.6 updated (1.6.0-20091004-13-g1d3486d)



The branch, stable-1.6 has been updated
       via  1d3486d420ff603548697f4fcb553776d2cea62f (commit)
       via  071e2a23a844003854688e981e43bc07c22bcd6b (commit)
      from  037651cdde1684c640d1339f699e1e45838e35e1 (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 |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


=================
 Commit Messages
=================

commit 1d3486d420ff603548697f4fcb553776d2cea62f
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.
    (cherry picked from commit 39209cd034abc4059e4cda6590be158dc366e787)

:100644 100644 3d8c40d... 7f3174d... M	libgeda/src/o_path_basic.c

commit 071e2a23a844003854688e981e43bc07c22bcd6b
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    libgeda: Fix postscript output issue with certain paths
    
    Ensure we always have a space before the "stroke" command.
    
    Reported-by: Donald Tillman <don@xxxxxxxx>
    (cherry picked from commit 012a3c3ddf55b0260b296476fa7d047af88818f7)

:100644 100644 991d6cc... 3d8c40d... M	libgeda/src/o_path_basic.c

=========
 Changes
=========

commit 1d3486d420ff603548697f4fcb553776d2cea62f
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.
    (cherry picked from commit 39209cd034abc4059e4cda6590be158dc366e787)

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");
 }
 
 

commit 071e2a23a844003854688e981e43bc07c22bcd6b
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    libgeda: Fix postscript output issue with certain paths
    
    Ensure we always have a space before the "stroke" command.
    
    Reported-by: Donald Tillman <don@xxxxxxxx>
    (cherry picked from commit 012a3c3ddf55b0260b296476fa7d047af88818f7)

diff --git a/libgeda/src/o_path_basic.c b/libgeda/src/o_path_basic.c
index 991d6cc..3d8c40d 100644
--- a/libgeda/src/o_path_basic.c
+++ b/libgeda/src/o_path_basic.c
@@ -610,7 +610,7 @@ static void o_path_print_solid (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",
@@ -627,12 +627,12 @@ static void o_path_print_solid (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, "stroke\n");
+  fprintf (fp, " stroke\n");
 }
 
 




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs