X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Freliability.c;h=bb3bbb2644548f78cf4edcf3aa61d19ee3bb4899;hb=63ae14f7f555727026138e1668e6cf91a9046bc0;hp=8975e4f9082d780bc18704a55ffccfba7ac6ca61;hpb=1e0e76eaeb51ef0c15fdcfc4bd12d9310c16a88b;p=pspp diff --git a/src/language/stats/reliability.c b/src/language/stats/reliability.c index 8975e4f908..bb3bbb2644 100644 --- a/src/language/stats/reliability.c +++ b/src/language/stats/reliability.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2009, 2010, 2011, 2013 Free Software Foundation, Inc. + Copyright (C) 2009, 2010, 2011, 2013, 2015 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 @@ -274,6 +274,14 @@ cmd_reliability (struct lexer *lexer, struct dataset *ds) } } } + else if (lex_match_id (lexer, "STATISTICS")) + { + lex_match (lexer, T_EQUALS); + msg (SW, _("The STATISTICS subcommand is not yet implemented. " + "No statistics will be produced.")); + while (lex_match (lexer, T_ID)) + continue; + } else { lex_error (lexer, NULL);