pspp-cvs
[Top][All Lists]
Advanced

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

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


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/count.c
Date: Sun, 06 Mar 2005 22:04:51 -0500

Index: pspp/src/count.c
diff -u pspp/src/count.c:1.13 pspp/src/count.c:1.14
--- pspp/src/count.c:1.13       Mon Nov 15 09:51:22 2004
+++ pspp/src/count.c    Mon Mar  7 03:04:50 2005
@@ -244,13 +244,13 @@
        }
 
       cur = &c->crit.n[n++];
-      if (token == T_NUM)
+      if (lex_is_number ())
        {
          cur->a = tokval;
          lex_get ();
          if (lex_match_id ("THRU"))
            {
-             if (token == T_NUM)
+             if (lex_is_number ())
                {
                  if (!lex_force_num ())
                    return 0;
@@ -282,7 +282,7 @@
        {
          if (!lex_force_match_id ("THRU"))
            return 0;
-         if (token == T_NUM)
+         if (lex_is_number ())
            {
              cur->type = CNT_LOW;
              cur->a = tokval;




reply via email to

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