pull/1779/head
Joe Conigliaro 2019-08-29 17:29:12 +10:00 committed by Alexander Medvednikov
parent beef793e83
commit 4a506b0566
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ fn (r mut Repl) checks(line string) bool {
was_indent := r.indent > 0
for i := 0; i < line.len; i++ {
if line[i] == `\'` && line[i - 1] != `\\` {
if line[i] == `\'` && (i != 0 && line[i - 1] != `\\`) {
in_string = !in_string
}
if line[i] == `{` && !in_string {