From 9cb6dec84b34ad0b8d424e2e023b66ab2d84e5c1 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 31 Jul 2015 08:35:04 -0700 Subject: [PATCH] T-TEST: Allow both CIN and CI on CRITERIA. Upon reading the bug report further, I see that it says that SPSS also allows both forms. Bug #45664. --- src/language/stats/t-test-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language/stats/t-test-parser.c b/src/language/stats/t-test-parser.c index 6b14adbdb3..138969f8bf 100644 --- a/src/language/stats/t-test-parser.c +++ b/src/language/stats/t-test-parser.c @@ -272,7 +272,7 @@ cmd_t_test (struct lexer *lexer, struct dataset *ds) else if (lex_match_id (lexer, "CRITERIA")) { lex_match (lexer, T_EQUALS); - if ( lex_force_match_id (lexer, "CI")) + if ( lex_match_id (lexer, "CIN") || lex_force_match_id (lexer, "CI")) if ( lex_force_match (lexer, T_LPAREN)) { lex_force_num (lexer); -- 2.30.2