X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fecho.c;h=b27b40017a367c397901acfb932bb1e81166ad2e;hb=774441e68b4d2e3a4b5c6975e9614dcd4369955e;hp=ebd6a990fc88e1c1c02a48a7562fd91d4fccdc32;hpb=f550aee00a62fe1d8baf62d83cd7efef6cc2ee92;p=pspp diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index ebd6a990fc..b27b40017a 100644 --- a/src/language/utilities/echo.c +++ b/src/language/utilities/echo.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2005, 2009 Free Software Foundation, Inc. + Copyright (C) 2005, 2009, 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 @@ -29,7 +29,7 @@ cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED) { struct tab_table *tab; - if (lex_token (lexer) != T_STRING) + if (!lex_force_string (lexer)) return CMD_FAILURE; tab = tab_create(1, 1);