pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] Changes to pspp/src/data-in.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/data-in.c
Date: Mon, 16 May 2005 03:33:28 -0400

Index: pspp/src/data-in.c
diff -u pspp/src/data-in.c:1.18 pspp/src/data-in.c:1.19
--- pspp/src/data-in.c:1.18     Wed May 11 03:09:09 2005
+++ pspp/src/data-in.c  Mon May 16 07:33:16 2005
@@ -468,7 +468,7 @@
   p = i->s;
 #else
   memcpy (buf, i->s, i->e - i->s);
-  mm_reverse (buf, i->e - i->s);
+  buf_reverse (buf, i->e - i->s);
   p = buf;
 #endif
 
@@ -760,7 +760,7 @@
     if ((ep->can_abbreviate
          && lex_id_match_len (ep->name, strlen (ep->name), name, length))
         || (!ep->can_abbreviate && length == strlen (ep->name)
-            && !mm_case_compare (name, ep->name, length)))
+            && !buf_compare_case (name, ep->name, length)))
       {
         *output = ep->value;
         return true;




reply via email to

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