^ is used for escape sequences

svn path=/trunk/; revision=1846
This commit is contained in:
Nedko Arnaudov 2001-05-01 20:53:24 +00:00
parent 13eef5cc24
commit 1afd43b049

View file

@ -1,4 +1,4 @@
/* $Id: ArgumentParser.cpp,v 1.5 2001/04/16 04:58:31 narnaoud Exp $ /* $Id: ArgumentParser.cpp,v 1.6 2001/05/01 20:53:24 narnaoud Exp $
* *
* regexpl - Console Registry Explorer * regexpl - Console Registry Explorer
* *
@ -52,7 +52,7 @@ m_pchArgumentListEnd = pchArguments + _tcslen(pchArguments);
{ {
switch(*pch) switch(*pch)
{ {
case _T('\\'): // argument parser ignores escape sequences case _T('^'): // argument parser ignores escape sequences
if (pch[1]) if (pch[1])
pch++; pch++;
break; break;