X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fprint-space.c;h=2fc932de4ea46f9576ee81dca277610afcd9675f;hb=0655c32db3a849462fbcebd73d8c659d814e794d;hp=25bcc750516964264f5bf99e9fd15fed251ed405;hpb=d0b91eae59319ab2756d0d43b9cb15eb9cd3c234;p=pspp-builds.git diff --git a/src/language/data-io/print-space.c b/src/language/data-io/print-space.c index 25bcc750..2fc932de 100644 --- a/src/language/data-io/print-space.c +++ b/src/language/data-io/print-space.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2006, 2009 Free Software Foundation, Inc. + Copyright (C) 2006, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -54,7 +54,7 @@ cmd_print_space (struct lexer *lexer, struct dataset *ds) if (lex_match_id (lexer, "OUTFILE")) { - lex_match (lexer, '='); + lex_match (lexer, T_EQUALS); handle = fh_parse (lexer, FH_REF_FILE); if (handle == NULL) @@ -64,10 +64,10 @@ cmd_print_space (struct lexer *lexer, struct dataset *ds) else handle = NULL; - if (lex_token (lexer) != '.') + if (lex_token (lexer) != T_ENDCMD) { expr = expr_parse (lexer, ds, EXPR_NUMBER); - if (lex_token (lexer) != '.') + if (lex_token (lexer) != T_ENDCMD) { expr_free (expr); lex_error (lexer, _("expecting end of command"));