made the command line parser not ignore any switch just before it didn't have a switch before it

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3461 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-02-04 20:03:30 +00:00
parent 1214352131
commit b1a527c4ce
5 changed files with 51 additions and 29 deletions

View file

@ -251,7 +251,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
while (c)
{
WIN32_FIND_DATA *fd;
while (*p != '\\' && *p) p=CharNext(p);
p = findchar(p, '\\');
c=*p;
*p=0;
fd = file_exists(buf1);