ECHO: Use text_item, as intended.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 7 Dec 2010 04:48:32 +0000 (20:48 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 06:17:24 +0000 (22:17 -0800)
TEXT_ITEM_ECHO is meant for use by ECHO but it had been overlooked
accidentally until now.

src/language/utilities/echo.c

index 149cc0eb0c131454fd3b717ab56a6eb2ec1bca61..88ece636ad1e1ba1054c45d2fe16b3c6de187cf1 100644 (file)
    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
 #include <config.h>
-#include <libpspp/message.h>
-#include <libpspp/str.h>
-#include <language/lexer/lexer.h>
-#include <language/command.h>
-#include <output/tab.h>
 
-#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_ECHO, lex_tokcstr (lexer)));
+  lex_get (lexer);
 
   return CMD_SUCCESS;
 }