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

gEDA-cvs: gaf.git: branch: master updated (1.6.0-20091004-32-g03acdbf)



The branch, master has been updated
       via  03acdbfaadaa35d11cf510ea4651b47584178514 (commit)
       via  012a3c3ddf55b0260b296476fa7d047af88818f7 (commit)
      from  620ee00b6211b04c75e9cadffe5547ce4ed1ca8b (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
=========

 gnetlist/src/i_vars.c            |    1 -
 libgeda/include/i_vars_priv.h    |    1 -
 libgeda/include/libgeda/struct.h |    1 -
 libgeda/include/prototype_priv.h |    1 -
 libgeda/src/o_path_basic.c       |    6 +++---
 libgeda/src/s_toplevel.c         |    2 --
 6 files changed, 3 insertions(+), 9 deletions(-)


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

commit 03acdbfaadaa35d11cf510ea4651b47584178514
Author: Peter Brett <peter@xxxxxxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    Clean up some left-over font directory cruft.

:100644 100644 26d58e8... 7a4767d... M	gnetlist/src/i_vars.c
:100644 100644 b10047f... f660115... M	libgeda/include/i_vars_priv.h
:100644 100644 c06a11f... acac448... M	libgeda/include/libgeda/struct.h
:100644 100644 fce2c75... b5d35e8... M	libgeda/include/prototype_priv.h
:100644 100644 0b0829b... 490b001... M	libgeda/src/s_toplevel.c

commit 012a3c3ddf55b0260b296476fa7d047af88818f7
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>

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

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

commit 03acdbfaadaa35d11cf510ea4651b47584178514
Author: Peter Brett <peter@xxxxxxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    Clean up some left-over font directory cruft.

diff --git a/gnetlist/src/i_vars.c b/gnetlist/src/i_vars.c
index 26d58e8..7a4767d 100644
--- a/gnetlist/src/i_vars.c
+++ b/gnetlist/src/i_vars.c
@@ -37,7 +37,6 @@
 
 #define DEFAULT_UNTITLED_NAME    "untitled"
 #define DEFAULT_SCHEME_DIRECTORY "./"
-#define DEFAULT_FONT_DIRECTORY   "../lib/sym/font"
 #define DEFAULT_BITMAP_DIRECTORY   "non-existant"
 #define DEFAULT_HIERARCHY_NETNAME_SEPARATOR "/"
 #define DEFAULT_HIERARCHY_NETATTRIB_SEPARATOR "/"
diff --git a/libgeda/include/i_vars_priv.h b/libgeda/include/i_vars_priv.h
index b10047f..f660115 100644
--- a/libgeda/include/i_vars_priv.h
+++ b/libgeda/include/i_vars_priv.h
@@ -3,7 +3,6 @@ extern int default_init_right;
 extern int default_init_bottom;
 
 extern char *default_untitled_name;
-extern char *default_font_directory;
 extern char *default_scheme_directory;
 extern char *default_bitmap_directory;
 extern char *default_bus_ripper_symname;
diff --git a/libgeda/include/libgeda/struct.h b/libgeda/include/libgeda/struct.h
index c06a11f..acac448 100644
--- a/libgeda/include/libgeda/struct.h
+++ b/libgeda/include/libgeda/struct.h
@@ -444,7 +444,6 @@ struct st_toplevel {
   GList *RC_list;                       /* List of RC files which have been read in. */
 
   char *untitled_name;			/* untitled sch basename */
-  char *font_directory; 		/* path of the vector fonts */
   char *scheme_directory; 		/* path of the scheme scripts */
   char *bitmap_directory; 		/* path of the bitmaps */
 
diff --git a/libgeda/include/prototype_priv.h b/libgeda/include/prototype_priv.h
index fce2c75..b5d35e8 100644
--- a/libgeda/include/prototype_priv.h
+++ b/libgeda/include/prototype_priv.h
@@ -22,7 +22,6 @@ SCM g_rc_world_size(SCM width, SCM height, SCM border);
 SCM g_rc_reset_component_library(void);
 SCM g_rc_reset_source_library(void);
 SCM g_rc_untitled_name(SCM name);
-SCM g_rc_font_directory(SCM path);
 SCM g_rc_bitmap_directory(SCM path);
 SCM g_rc_scheme_directory(SCM path);
 SCM g_rc_bus_ripper_symname(SCM scmsymname);
diff --git a/libgeda/src/s_toplevel.c b/libgeda/src/s_toplevel.c
index 0b0829b..490b001 100644
--- a/libgeda/src/s_toplevel.c
+++ b/libgeda/src/s_toplevel.c
@@ -48,7 +48,6 @@ TOPLEVEL *s_toplevel_new (void)
   toplevel->RC_list = NULL;
 
   toplevel->untitled_name      = NULL;
-  toplevel->font_directory     = NULL;
   toplevel->scheme_directory   = NULL;
   toplevel->bitmap_directory   = NULL;
 
@@ -165,7 +164,6 @@ void s_toplevel_delete (TOPLEVEL *toplevel)
   }
 
   g_free (toplevel->untitled_name);
-  g_free (toplevel->font_directory);
   g_free (toplevel->scheme_directory);
   g_free (toplevel->bitmap_directory);
   g_free (toplevel->bus_ripper_symname);

commit 012a3c3ddf55b0260b296476fa7d047af88818f7
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>

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