/[pspp]/pspp/src/count.c
ViewVC logotype

Diff of /pspp/src/count.c

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

revision 1.13 by blp, Mon Nov 15 09:51:22 2004 UTC revision 1.14 by blp, Mon Mar 7 03:04:50 2005 UTC
# Line 244  parse_numeric_criteria (struct counting Line 244  parse_numeric_criteria (struct counting
244          }          }
245    
246        cur = &c->crit.n[n++];        cur = &c->crit.n[n++];
247        if (token == T_NUM)        if (lex_is_number ())
248          {          {
249            cur->a = tokval;            cur->a = tokval;
250            lex_get ();            lex_get ();
251            if (lex_match_id ("THRU"))            if (lex_match_id ("THRU"))
252              {              {
253                if (token == T_NUM)                if (lex_is_number ())
254                  {                  {
255                    if (!lex_force_num ())                    if (!lex_force_num ())
256                      return 0;                      return 0;
# Line 282  parse_numeric_criteria (struct counting Line 282  parse_numeric_criteria (struct counting
282          {          {
283            if (!lex_force_match_id ("THRU"))            if (!lex_force_match_id ("THRU"))
284              return 0;              return 0;
285            if (token == T_NUM)            if (lex_is_number ())
286              {              {
287                cur->type = CNT_LOW;                cur->type = CNT_LOW;
288                cur->a = tokval;                cur->a = tokval;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

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