Replace tests on packed words with tests on strings.

This commit is contained in:
Jason S. Ninneman 2017-07-11 08:52:50 -07:00 committed by Eric S. Raymond
parent bcacb84166
commit b5e8eec80e

4
main.c
View file

@ -1137,11 +1137,11 @@ Lclosecheck:
command.wd1 = token_to_packed("CATCH"); command.wd1 = token_to_packed("CATCH");
} }
Lookup: Lookup:
if (wordeq(command.wd1, token_to_packed("WEST"))) { if (strncasecmp(command.raw1, "west", sizeof("west")) == 0) {
if (++game.iwest == 10) if (++game.iwest == 10)
rspeak(W_IS_WEST); rspeak(W_IS_WEST);
} }
if (wordeq(command.wd1, token_to_packed("GO")) && !wordempty(command.wd2)) { if (strncasecmp(command.raw1, "go", sizeof("go")) == 0 && !wordempty(command.wd2)) {
if (++game.igo == 10) if (++game.igo == 10)
rspeak(GO_UNNEEDED); rspeak(GO_UNNEEDED);
} }