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

gEDA-cvs: pcb.git: branch: master updated (7969c1eba58a2dfbe86fa12906ac57a879738bf7)



The branch, master has been updated
       via  7969c1eba58a2dfbe86fa12906ac57a879738bf7 (commit)
      from  8edbb89218afc6c035357c04738233cd92767eea (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
=========

 src/parse_l.l |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


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

commit 7969c1eba58a2dfbe86fa12906ac57a879738bf7
Author: DJ Delorie <dj@xxxxxxxxxxx>
Commit: DJ Delorie <dj@xxxxxxxxxxx>

    Don't print "can't open ./default_font for reading" all the time

:100644 100644 9163fde... b1b67a8... M	src/parse_l.l

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

commit 7969c1eba58a2dfbe86fa12906ac57a879738bf7
Author: DJ Delorie <dj@xxxxxxxxxxx>
Commit: DJ Delorie <dj@xxxxxxxxxxx>

    Don't print "can't open ./default_font for reading" all the time

diff --git a/src/parse_l.l b/src/parse_l.l
index 9163fde..b1b67a8 100644
--- a/src/parse_l.l
+++ b/src/parse_l.l
@@ -234,7 +234,9 @@ static int Parse(char *Executable, char *Path, char *Filename, char *Parameter)
 	    yyin = fopen (tmps, "r");
 	    if (!yyin)
 	      {
-		Message("Can't open %s for reading\n", tmps);
+	        /* Special case this one, we get it all the time... */
+	        if (strcmp (tmps, "./default_font"))
+		  Message("Can't open %s for reading\n", tmps);
 		return(1);
 	      }
             free (tmps);




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