Fix spelling in comments
Should be non-functional, except for some error message strings.
This commit is contained in:
@@ -317,7 +317,7 @@ static void makeSubstitutions(inputData * const inputPvt,
|
||||
pstart = ++p;
|
||||
/*Look for end quote*/
|
||||
while (*p && (*p != '"')) {
|
||||
/*allow escape for embeded quote*/
|
||||
/*allow escape for embedded quote*/
|
||||
if ((p[0] == '\\') && p[1] == '"') {
|
||||
p += 2;
|
||||
continue;
|
||||
@@ -1028,7 +1028,7 @@ static tokenType subGetNextToken(subFile *psubFile)
|
||||
subFileErrPrint(psubFile, "Strings must be on single line\n");
|
||||
abortExit(1);
|
||||
}
|
||||
/*allow escape for embeded quote*/
|
||||
/*allow escape for embedded quote*/
|
||||
if ((p[0] == '\\') && p[1] == '"') {
|
||||
*pto++ = *p++;
|
||||
*pto++ = *p++;
|
||||
|
||||
Reference in New Issue
Block a user