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: Thu, 02 Nov 2006 04:51:41 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 06/11/02 04:51:41

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

Log message:
                * sys-file-info.c: (cmd_display) Use compare_var_ptr_names to
                compare "struct variable **"s, not compare_var_names.  Fixes bug
                #17423.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/dictionary/ChangeLog?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/dictionary/sys-file-info.c?cvsroot=pspp&r1=1.11&r2=1.12

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/dictionary/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- ChangeLog   7 May 2006 02:04:12 -0000       1.3
+++ ChangeLog   2 Nov 2006 04:51:41 -0000       1.4
@@ -1,3 +1,9 @@
+Wed Nov  1 20:50:54 2006  Ben Pfaff  <address@hidden>
+
+       * sys-file-info.c: (cmd_display) Use compare_var_ptr_names to
+       compare "struct variable **"s, not compare_var_names.  Fixes bug
+       #17423.
+
 Sat May  6 19:03:34 2006  Ben Pfaff  <address@hidden>
 
        * apply-dictionary.c: (cmd_apply_dictionary) Use new function

Index: sys-file-info.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/dictionary/sys-file-info.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- sys-file-info.c     26 Oct 2006 06:16:36 -0000      1.11
+++ sys-file-info.c     2 Nov 2006 04:51:41 -0000       1.12
@@ -271,7 +271,7 @@
        }
 
       if (sorted)
-       sort (vl, n, sizeof *vl, compare_var_names, NULL);
+       sort (vl, n, sizeof *vl, compare_var_ptr_names, NULL);
 
       display_variables (vl, n, as);
 




reply via email to

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