Skip to content

Commit

Permalink
woops cleanup whitespace/tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Todd Ditchendorf committed Apr 29, 2010
1 parent 75054d6 commit e3ee60c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/PKQuoteState.m
Expand Up @@ -63,17 +63,17 @@ - (PKToken *)nextTokenFromReader:(PKReader *)r startingWith:(PKUniChar)cin token
}
} else if ((!usesCSVStyleEscaping && c == '\\') || (usesCSVStyleEscaping && c == cin)) {
PKUniChar peek = [r read];
if (peek == cin) {
[self append:c];
[self append:peek];
c = PKEOF; // Just to get past the while() condition
} else {
if (peek == cin) {
[self append:c];
[self append:peek];
c = PKEOF; // Just to get past the while() condition
} else {
if (peek != PKEOF) {
[r unread:1];
}
[self append:c];
}
} else {
[self append:c];
}
} else {
[self append:c];
}
} while (c != cin);
Expand Down

0 comments on commit e3ee60c

Please sign in to comment.