pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/language/dictionary ChangeLog sys-file...


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src/language/dictionary ChangeLog sys-file...
Date: Mon, 12 Nov 2007 00:54:51 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/11/12 00:54:51

Modified files:
        src/language/dictionary: ChangeLog sys-file-info.c 

Log message:
        (display_variables): Fix DISPLAY LABELS.  Thanks to Guido Gay
        <address@hidden> for reporting this bug.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/dictionary/ChangeLog?cvsroot=pspp&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/dictionary/sys-file-info.c?cvsroot=pspp&r1=1.34&r2=1.35

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/dictionary/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- ChangeLog   3 Nov 2007 22:00:05 -0000       1.13
+++ ChangeLog   12 Nov 2007 00:54:50 -0000      1.14
@@ -1,3 +1,8 @@
+2007-11-11  Ben Pfaff  <address@hidden>
+
+       * sys-file-info.c (display_variables): Fix DISPLAY LABELS.  Thanks
+       to Guido Gay <address@hidden> for reporting this bug.
+
 2007-11-03  Ben Pfaff  <address@hidden>
 
        Allow output files to overwrite input files (bug #21280).

Index: sys-file-info.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/dictionary/sys-file-info.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- sys-file-info.c     3 Nov 2007 22:00:06 -0000       1.34
+++ sys-file-info.c     12 Nov 2007 00:54:50 -0000      1.35
@@ -423,7 +423,7 @@
             {
               const char *label = var_get_label (v);
               tab_joint_text (t, 1, r, 2, r, TAB_LEFT,
-                              label != NULL ? "(no label)" : label);
+                              label == NULL ? "(no label)" : label);
             }
          if (as != AS_NAMES)
            {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]