mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 08:44:19 -04:00
ppremake no longer ignores empty lines or one-character lines in #output block
This commit is contained in:
parent
64851b9557
commit
2414bcd787
@ -462,8 +462,8 @@ read_line(string line) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!_in_for && !failed_if() && line.length() > p+1) {
|
||||
if(line[p+1]==COMMAND_PREFIX) {
|
||||
if (!_in_for && !failed_if()) {
|
||||
if (line.length() > p + 1 && line[p + 1] == COMMAND_PREFIX) {
|
||||
// double prefix at start of line indicates echo single prefix, like '\\' in C
|
||||
line.erase(0, 1);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user