listobjects();
L2012:
- command.verb = 0;
game.oldobj = command.obj;
- command.obj = 0;
L2600:
checkhints();
return (false);
if (word_count(input) > 2) {
rspeak(TWO_WORDS);
+ free(input);
continue;
}
if (strcmp(input, "") != 0)
if (input == NULL) // Got EOF; return with it.
return (input);
- else if (input[0] == '#') { // Ignore comments.
+ if (input[0] == '#') { // Ignore comments.
free(input);
continue;
- } else // We have a 'normal' line; leave the loop.
- break;
+ }
+ // We have a 'normal' line; leave the loop.
+ break;
}
// Strip trailing newlines from the input