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

gEDA-cvs: branch: master updated (1.1.2.20070818-123-g4905935)



The branch, master has been updated
       via  49059356b318abbfa2ce977e017859049fd40162 (commit)
      from  0c2871d04305a0fcaf3b6b45a1317a491594a3f4 (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
=========

 gschem/src/x_window.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


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

commit 49059356b318abbfa2ce977e017859049fd40162
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Thu Nov 29 08:37:12 2007 +0000

    gschem: Fix file loading
    
    commit 5cb63878f258bc836a9908b329608268c38cf64c inadvertently broken
    file loading completely due to a logic error.

:100644 100644 598f15b... b77fc11... M	gschem/src/x_window.c

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

commit 49059356b318abbfa2ce977e017859049fd40162
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Thu Nov 29 08:37:12 2007 +0000

    gschem: Fix file loading
    
    commit 5cb63878f258bc836a9908b329608268c38cf64c inadvertently broken
    file loading completely due to a logic error.

diff --git a/gschem/src/x_window.c b/gschem/src/x_window.c
index 598f15b..b77fc11 100644
--- a/gschem/src/x_window.c
+++ b/gschem/src/x_window.c
@@ -800,7 +800,7 @@ x_window_open_page (GSCHEM_TOPLEVEL *w_current, const gchar *filename)
   s_page_goto (toplevel, page);
 
   /* Load from file if necessary, otherwise just print a message */
-  if (filename == NULL) {
+  if (filename != NULL) {
     if (!quiet_mode)
       s_log_message (_("Loading schematic [%s]\n"), fn);
 




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