Removed my authorship lines.
[pspp-builds.git] / src / language / utilities / echo.c
index e4d8e685fbd39d1b953a4afab94879776907ff73..02db23ae568c921c8aae43be0fa6bc44b9b913bf 100644 (file)
@@ -1,7 +1,6 @@
 /* PSPP - computes sample statistics. -*-c-*-
 
    Copyright (C) 2005 Free Software Foundation, Inc.
-   Written by John Darrington 2005
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
 
 /* 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 +40,7 @@ cmd_echo(void)
   tab_dim (tab, tab_natural_dimensions);
   tab_flags (tab, SOMF_NO_TITLE );
 
-  tab_text(tab, 0, 0, 0, ds_cstr (&tokstr));
+  tab_text(tab, 0, 0, 0, ds_cstr (lex_tokstr (lexer)));
 
   tab_submit(tab);