X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Fecho.c;h=7bb581bd4a5480bbc3a39999e7ffdb23b8a65364;hb=3816248a008a4af75aac6319d0c9929cb7ff679e;hp=5405d060f0da33694ab24e7b157836915893853b;hpb=fd0958dc7caa5806b82b9757e2b937c5b7def369;p=pspp-builds.git diff --git a/src/language/utilities/echo.c b/src/language/utilities/echo.c index 5405d060..7bb581bd 100644 --- a/src/language/utilities/echo.c +++ b/src/language/utilities/echo.c @@ -29,11 +29,11 @@ /* Echos a string to the output stream */ int -cmd_echo (struct dataset *ds UNUSED) +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 (struct dataset *ds UNUSED) 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);