X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fcontrol%2Ftemporary.c;fp=src%2Flanguage%2Fcontrol%2Ftemporary.c;h=e49fc1acdac49d0db228b75b36f977f660abf2ff;hb=3816248a008a4af75aac6319d0c9929cb7ff679e;hp=45d7342b60a10b299f40ed706213f806de3ab43e;hpb=fd0958dc7caa5806b82b9757e2b937c5b7def369;p=pspp-builds.git diff --git a/src/language/control/temporary.c b/src/language/control/temporary.c index 45d7342b..e49fc1ac 100644 --- a/src/language/control/temporary.c +++ b/src/language/control/temporary.c @@ -41,12 +41,12 @@ /* Parses the TEMPORARY command. */ int -cmd_temporary (struct dataset *ds) +cmd_temporary (struct lexer *lexer, struct dataset *ds) { if (!proc_in_temporary_transformations (ds)) proc_start_temporary_transformations (ds); else msg (SE, _("This command may only appear once between " "procedures and procedure-like commands.")); - return lex_end_of_command (); + return lex_end_of_command (lexer); }