X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Ftests%2Fformat-guesser-test.c;h=6285fc042c04a07cac583e68a38c814921ab4022;hb=c1ecb26e96f0abc014a374081e7c2f985b2ca112;hp=728080153c8565c8f6daf033acf3f6102d446de7;hpb=3e3d825afe59ad43699664a74ca04e2e1b836786;p=pspp diff --git a/src/language/tests/format-guesser-test.c b/src/language/tests/format-guesser-test.c index 728080153c..6285fc042c 100644 --- a/src/language/tests/format-guesser-test.c +++ b/src/language/tests/format-guesser-test.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008, 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 @@ -33,7 +33,7 @@ cmd_debug_format_guesser (struct lexer *lexer, struct dataset *ds UNUSED) char format_string[FMT_STRING_LEN_MAX + 1]; g = fmt_guesser_create (); - while (lex_token (lexer) == T_STRING) + while (lex_is_string (lexer)) { fprintf (stderr, "\"%s\" ", ds_cstr (lex_tokstr (lexer))); fmt_guesser_add (g, ds_ss (lex_tokstr (lexer)));