X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmodify-vars.c;h=fee6d59b840f92afdff88c1a877dc0a15cfc0a6e;hb=1f053e35b27208cad9bec322c67ba4ef022c1dc1;hp=46fe644d105b7bd0c7520449e4ff415606ce8eb3;hpb=14e7292894533c5491a774a2d749386362660812;p=pspp-builds.git diff --git a/src/modify-vars.c b/src/modify-vars.c index 46fe644d..fee6d59b 100644 --- a/src/modify-vars.c +++ b/src/modify-vars.c @@ -14,16 +14,17 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include -#include +#include "error.h" #include "algorithm.h" #include "alloc.h" #include "bitvector.h" #include "command.h" +#include "dictionary.h" #include "error.h" #include "hash.h" #include "lexer.h" @@ -90,9 +91,6 @@ cmd_modify_vars (void) cancel_temporary (); } - lex_match_id ("MODIFY"); - lex_match_id ("VARS"); - vm.reorder_vars = NULL; vm.reorder_cnt = 0; vm.rename_vars = NULL; @@ -350,7 +348,7 @@ compare_variables_given_ordering (const void *a_, const void *b_, if (ordering->positional) result = a->index < b->index ? -1 : a->index > b->index; else - result = strcmp (a->name, b->name); + result = strcasecmp (a->name, b->name); if (!ordering->forward) result = -result; return result; @@ -360,7 +358,7 @@ compare_variables_given_ordering (const void *a_, const void *b_, struct var_renaming { struct variable *var; - char new_name[9]; + char new_name[LONG_NAME_LEN + 1]; }; /* A algo_compare_func that compares new_name members in struct @@ -372,7 +370,7 @@ compare_var_renaming_by_new_name (const void *a_, const void *b_, const struct var_renaming *a = a_; const struct var_renaming *b = b_; - return strcmp (a->new_name, b->new_name); + return strcasecmp (a->new_name, b->new_name); } /* Returns true if performing VM on dictionary D would not cause