16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 07:49:19 +02:00

Merge remote-tracking branch 'manul-public/master' into manul-staging

This commit is contained in:
WLs50
2025-04-05 14:24:53 +02:00
45 changed files with 875 additions and 477 deletions

View File

@@ -203,7 +203,7 @@ std::string cParser::readToken( bool ToLower, const char *Break ) {
token += c;
if( findQuotes( token ) ) // do glue together words enclosed in quotes
continue;
if( trimComments( token ) ) // don't glue together words separated with comment
if( skipComments && trimComments( token ) ) // don't glue together words separated with comment
break;
}
if( c == '\n' ) {