X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fecho.c;h=7e582cb4af03c0c80a359948ead1441d41631faa;hb=d2a96ae99e49b5264ca68ace469e20fa5e2e605b;hp=09c42382ead50dcdd78fe0d352ff3e01934cf508;hpb=a19b858e0ac3c69e4a28c0ca6d8674427268a863;p=pspp diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index 09c42382ea..7e582cb4af 100644 --- a/src/language/utilities/echo.c +++ b/src/language/utilities/echo.c @@ -1,7 +1,6 @@ /* PSPP - computes sample statistics. -*-c-*- Copyright (C) 2005 Free Software Foundation, Inc. - Written by John Darrington 2005 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -29,19 +28,19 @@ /* Echos a string to the output stream */ int -cmd_echo(void) +cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED) { struct tab_table *tab; - if (token != T_STRING) + if (lex_token (lexer) != T_STRING) return CMD_FAILURE; - + tab = tab_create(1, 1, 0); tab_dim (tab, tab_natural_dimensions); tab_flags (tab, SOMF_NO_TITLE ); - tab_text(tab, 0, 0, 0, tokstr.string); + tab_text(tab, 0, 0, 0, ds_cstr (lex_tokstr (lexer))); tab_submit(tab);