X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fecho.c;h=3f31e335f68432f758ae8a2b75693cea9b114eee;hb=0fc606c52d7cec253af9b7463b15baabfbc9a33a;hp=149cc0eb0c131454fd3b717ab56a6eb2ec1bca61;hpb=55e6e7ba37a30570f5a31e2d78c22dfa7b61a36f;p=pspp diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index 149cc0eb0c..3f31e335f6 100644 --- a/src/language/utilities/echo.c +++ b/src/language/utilities/echo.c @@ -15,28 +15,24 @@ along with this program. If not, see . */ #include -#include -#include -#include -#include -#include -#include "xalloc.h" +#include "language/command.h" +#include "language/lexer/lexer.h" +#include "libpspp/message.h" +#include "libpspp/str.h" +#include "output/text-item.h" + +#include "gl/xalloc.h" /* Echos a string to the output stream */ int cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED) { - struct tab_table *tab; - if (!lex_force_string (lexer)) return CMD_FAILURE; - tab = tab_create(1, 1); - - tab_text (tab, 0, 0, 0, lex_tokcstr (lexer)); - - tab_submit(tab); + text_item_submit (text_item_create (TEXT_ITEM_LOG, lex_tokcstr (lexer))); + lex_get (lexer); return CMD_SUCCESS; }