(display_variables): Fix DISPLAY LABELS. Thanks to Guido Gay
authorBen Pfaff <blp@gnu.org>
Mon, 12 Nov 2007 00:54:50 +0000 (00:54 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 12 Nov 2007 00:54:50 +0000 (00:54 +0000)
<gay@irer.it> for reporting this bug.

src/language/dictionary/ChangeLog
src/language/dictionary/sys-file-info.c

index 31c762f57976dfb5fec76393a834c97b1b648480..bc7d713460114febe19ff79e0c08ee37a9524f8a 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-11  Ben Pfaff  <blp@gnu.org>
+
+       * sys-file-info.c (display_variables): Fix DISPLAY LABELS.  Thanks
+       to Guido Gay <gay@irer.it> for reporting this bug.
+
 2007-11-03  Ben Pfaff  <blp@gnu.org>
 
        Allow output files to overwrite input files (bug #21280).
index fb953c94e97712704ed9f0bbadd07c6fa638e311..b98854db6ea290a053a43fa377b6d0e4d246b305 100644 (file)
@@ -423,7 +423,7 @@ display_variables (const struct variable **vl, size_t n, int as)
             {
               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)
            {