fixed bug concerning back-slashes within strings
This commit is contained in:
parent
535e64328a
commit
c7a5b07da7
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ preprocess(fn)
|
||||||
++LineNumber;
|
++LineNumber;
|
||||||
lineno++;
|
lineno++;
|
||||||
}
|
}
|
||||||
else if (c == '\'') escaped = 1;
|
else escaped = 1;
|
||||||
}
|
}
|
||||||
} while (escaped || c != stopc);
|
} while (escaped || c != stopc);
|
||||||
echo(c);
|
echo(c);
|
||||||
|
|
Loading…
Reference in a new issue