80 columns.
This commit is contained in:
parent
7849f4e7f1
commit
80d57d9c93
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user