mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:25:45 +00:00
^ is used for escape sequences
svn path=/trunk/; revision=1846
This commit is contained in:
parent
13eef5cc24
commit
1afd43b049
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue