lexer: New type enum token_type.
[pspp-builds.git] / src / language / dictionary / variable-label.c
index fbf7e200ee3a4d89876b3b6f1a21e37292923a55..e6bd62296f8486c30f78af84ec5591ae7a37e18c 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2010 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -63,11 +63,11 @@ cmd_variable_labels (struct lexer *lexer, struct dataset *ds)
       ds_destroy (&label);
 
       lex_get (lexer);
-      while (lex_token (lexer) == '/')
+      while (lex_token (lexer) == T_SLASH)
        lex_get (lexer);
       free (v);
     }
-  while (lex_token (lexer) != '.');
+  while (lex_token (lexer) != T_ENDCMD);
   return CMD_SUCCESS;
 }