Rewrite PSPP output engine.
[pspp-builds.git] / src / language / utilities / echo.c
index 05353f81e6ad0e885c33c55fb7fa26a006613ad7..ebd6a990fc88e1c1c02a48a7562fd91d4fccdc32 100644 (file)
@@ -19,8 +19,7 @@
 #include <libpspp/str.h>
 #include <language/lexer/lexer.h>
 #include <language/command.h>
-#include <output/table.h>
-#include <output/manager.h>
+#include <output/tab.h>
 
 #include "xalloc.h"
 
@@ -33,10 +32,7 @@ cmd_echo (struct lexer *lexer, struct dataset *ds UNUSED)
   if (lex_token (lexer) != T_STRING)
     return CMD_FAILURE;
 
-  tab = tab_create(1, 1, 0);
-
-  tab_dim (tab, tab_natural_dimensions, NULL, NULL);
-  tab_flags (tab, SOMF_NO_TITLE );
+  tab = tab_create(1, 1);
 
   tab_text(tab, 0, 0, 0, ds_cstr (lex_tokstr (lexer)));