Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-07-07 10:49:53 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-07-07 10:50:32 +0300
commit3172731377b5a35bfd3c368a662880efd9c39330 (patch)
treec6a0d140f191018ed3e584f3fbd2e44a0ee320d4 /src/GCodes/GCodeBuffer/StringParser.cpp
parent4ab3b291d5083636e081111f99e907afc73737c4 (diff)
Fixed M117 "string too long" issue
Diffstat (limited to 'src/GCodes/GCodeBuffer/StringParser.cpp')
-rw-r--r--src/GCodes/GCodeBuffer/StringParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeBuffer/StringParser.cpp b/src/GCodes/GCodeBuffer/StringParser.cpp
index 8b4df0f0..4c89a853 100644
--- a/src/GCodes/GCodeBuffer/StringParser.cpp
+++ b/src/GCodes/GCodeBuffer/StringParser.cpp
@@ -1278,7 +1278,7 @@ void StringParser::InternalGetQuotedString(const StringRef& str) THROWS(GCodeExc
}
else if (gb.buffer[readPointer] == c)
{
- // Two backslashes are used to represent one
+ // Two single quote characters are used to represent one
++readPointer;
}
}