Skip to content

Commit

Permalink
Fixed #57
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborsch committed May 5, 2024
1 parent 66606af commit c86573f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified rocky.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/rockstar/parser/MultilineReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private void processChar(char c) {
addToken(1);
isInQuote = false;
} else {
isInQuoteAfterBackslash = (c == '\\');
isInQuoteAfterBackslash = (!isInQuoteAfterBackslash) && (c == '\\');
}
return;
}
Expand Down

0 comments on commit c86573f

Please sign in to comment.