HOST command needs F_KEEP_FINAL_TOKEN.
[pspp-builds.git] / src / language / utilities / echo.c
index 09c42382ead50dcdd78fe0d352ff3e01934cf508..7bb581bd4a5480bbc3a39999e7ffdb23b8a65364 100644 (file)
 
 /* 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);
@@ -41,7 +41,7 @@ cmd_echo(void)
   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);