if(!Util.isWindows()) {
// on windows we don't escape, this would mess up file system paths for example.
setDefaultHandler(WordCharacterHandler.LB_LEAVE_ESCAPE_ON);
enterState('"', QuotesState.QUOTES_INCLUDED);
} else {
setDefaultHandler(new WordCharacterHandler(true, false));
enterState('"', new QuotesState(true, false));
}
setReturnHandler(new CharacterHandler() {
@Override
public void handle(ParsingContext ctx) throws CommandFormatException {