/[pspp]/pspp/src/data-in.c
ViewVC logotype

Diff of /pspp/src/data-in.c

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

revision 1.18 by blp, Wed May 11 03:09:09 2005 UTC revision 1.19 by blp, Mon May 16 07:33:16 2005 UTC
# Line 468  parse_IB (struct data_in *i) Line 468  parse_IB (struct data_in *i)
468    p = i->s;    p = i->s;
469  #else  #else
470    memcpy (buf, i->s, i->e - i->s);    memcpy (buf, i->s, i->e - i->s);
471    mm_reverse (buf, i->e - i->s);    buf_reverse (buf, i->e - i->s);
472    p = buf;    p = buf;
473  #endif  #endif
474    
# Line 760  parse_enum (struct data_in *i, const cha Line 760  parse_enum (struct data_in *i, const cha
760      if ((ep->can_abbreviate      if ((ep->can_abbreviate
761           && lex_id_match_len (ep->name, strlen (ep->name), name, length))           && lex_id_match_len (ep->name, strlen (ep->name), name, length))
762          || (!ep->can_abbreviate && length == strlen (ep->name)          || (!ep->can_abbreviate && length == strlen (ep->name)
763              && !mm_case_compare (name, ep->name, length)))              && !buf_compare_case (name, ep->name, length)))
764        {        {
765          *output = ep->value;          *output = ep->value;
766          return true;          return true;

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

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