From: John Darrington Date: Sun, 28 Aug 2011 12:01:51 +0000 (+0200) Subject: GLM: Disable the interactions option until it actually gives the right results X-Git-Tag: v0.7.9~148 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=630f6a3db4f572c35c6a903ad1be1ae37717a10e;p=pspp-builds.git GLM: Disable the interactions option until it actually gives the right results --- diff --git a/src/language/stats/glm.c b/src/language/stats/glm.c index f8a7f133..6401defd 100644 --- a/src/language/stats/glm.c +++ b/src/language/stats/glm.c @@ -723,7 +723,7 @@ parse_design_interaction (struct lexer *lexer, struct glm_spec *glm, struct inte if ( lex_match (lexer, T_ASTERISK) || lex_match (lexer, T_BY)) { - // lex_error (lexer, "Interactions are not yet implemented"); return false; + lex_error (lexer, "Interactions are not yet implemented"); return false; return parse_design_interaction (lexer, glm, iact); }