X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Futilities%2Fecho.c;h=13fa72155645a94224dd2e96e9ca3990bec923cb;hb=29917c4f5908454803e663d2ad78bca4bc35e805;hp=3d3c2c40e73ebde043d0be174f37205e41b3d5f8;hpb=cb586666724d5fcbdb658ce471b85484f0a7babe;p=pspp diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index 3d3c2c40e7..13fa721556 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 @@ -15,32 +15,29 @@ along with this program. If not, see . */ #include -#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/output-item.h" +#include "output/driver.h" + +#include "gl/xalloc.h" + +#include "gettext.h" +#define _(msgid) gettext (msgid) /* Echos a string to the output stream */ int 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); - - tab_dim (tab, tab_natural_dimensions, NULL, NULL); - tab_flags (tab, SOMF_NO_TITLE ); - - tab_text(tab, 0, 0, 0, ds_cstr (lex_tokstr (lexer))); - - tab_submit(tab); + output_submit (text_item_create (TEXT_ITEM_LOG, lex_tokcstr (lexer), + _("Echo"))); + lex_get (lexer); return CMD_SUCCESS; }