80 columns.

This commit is contained in:
Philippe Canal 2013-07-17 11:30:27 -05:00 committed by sftnight
parent 7849f4e7f1
commit 80d57d9c93

View File

@ -135,7 +135,8 @@ namespace cling {
Tok.startToken(curPos);
while (true) {
bool escape = false;
while ( (escape || *curPos != start) && *curPos != '\0' && *curPos != '\r' && *curPos != '\n') {
while ( (escape || *curPos != start)
&& *curPos != '\0' && *curPos != '\r' && *curPos != '\n') {
escape = ( (*curPos) == '\\' );
++curPos;
}