mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-24 22:34:54 +02:00
Fix error message of openning file with '=' as end of file name
Ignore '=' at the end of a file name. Fix #13344, close #13917
This commit is contained in:
parent
4df27c8e8b
commit
3ea789caea
@ -111,7 +111,7 @@ void parseCommandLine(const TCHAR* commandLine, ParamVector& paramVector)
|
||||
{
|
||||
case '\"': //quoted filename, ignore any following whitespace
|
||||
{
|
||||
if (!isStringInArg && i > 0 && cmdLinePtr[i-1] == '=')
|
||||
if (!isStringInArg && !isInFile && i > 0 && cmdLinePtr[i-1] == '=')
|
||||
{
|
||||
isStringInArg = true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user