summaryrefslogtreecommitdiffstats
path: root/src/jomlib/makefilelinereader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jomlib/makefilelinereader.cpp')
-rw-r--r--src/jomlib/makefilelinereader.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jomlib/makefilelinereader.cpp b/src/jomlib/makefilelinereader.cpp
index 60a1cbf..ee20d86 100644
--- a/src/jomlib/makefilelinereader.cpp
+++ b/src/jomlib/makefilelinereader.cpp
@@ -139,6 +139,8 @@ MakefileLine MakefileLineReader::readLine_impl_local8bit()
if (bufLength >= 3 && buf[bufLength - 3] == '^') {
buf[bufLength - 3] = '\\'; // replace "^\\\n" -> "\\\\\n"
bufLength -= 2; // remove "\\\n"
+ } else if (bufLength >= 3 && buf[bufLength - 3] == '\\') {
+ bufLength--; // remove trailing \n
} else {
bufLength -= 2; // remove "\\\n"
line.continuation = LineContinuationType::Backslash;
@@ -172,6 +174,8 @@ MakefileLine MakefileLineReader::readLine_impl_unicode()
if (str.endsWith(QLatin1String("^\\"))) {
str.remove(str.length() - 2, 1);
+ } else if (str.endsWith(QLatin1String("\\\\"))) {
+ // Do nothing. Double backslash at the end is not altered.
} else if (str.endsWith(QLatin1Char('\\'))) {
str.chop(1);
line.continuation = LineContinuationType::Backslash;