/[pspp]/pspp/src/expressions/parse.c
ViewVC logotype

Diff of /pspp/src/expressions/parse.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by blp, Mon May 2 06:21:21 2005 UTC revision 1.11 by blp, Mon May 16 07:33:17 2005 UTC
# Line 881  word_matches (const char **test, const c Line 881  word_matches (const char **test, const c
881    size_t name_len = strcspn (*name, ".");    size_t name_len = strcspn (*name, ".");
882    if (test_len == name_len)    if (test_len == name_len)
883      {      {
884        if (mm_case_compare (*test, *name, test_len))        if (buf_compare_case (*test, *name, test_len))
885          return false;          return false;
886      }      }
887    else if (test_len < 3 || test_len > name_len)    else if (test_len < 3 || test_len > name_len)
888      return false;      return false;
889    else    else
890      {      {
891        if (mm_case_compare (*test, *name, test_len))        if (buf_compare_case (*test, *name, test_len))
892          return false;          return false;
893      }      }
894    

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26