diff options
author | marha <marha@users.sourceforge.net> | 2009-08-04 13:58:23 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-08-04 13:58:23 +0000 |
commit | 392f542ca74be7b3721e7a4af75544a39e0eceae (patch) | |
tree | 39e7d8d5625c8563de18bfd882543910ca69af84 /tools/mhmake/src/mhmakelexer.l | |
parent | a1c52b0d76b73151014d62f920a73df8097563e9 (diff) | |
download | vcxsrv-392f542ca74be7b3721e7a4af75544a39e0eceae.tar.gz vcxsrv-392f542ca74be7b3721e7a4af75544a39e0eceae.tar.bz2 vcxsrv-392f542ca74be7b3721e7a4af75544a39e0eceae.zip |
Escaping of the $ sign by doubling it was not always done correctly.
Diffstat (limited to 'tools/mhmake/src/mhmakelexer.l')
-rw-r--r-- | tools/mhmake/src/mhmakelexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakelexer.l b/tools/mhmake/src/mhmakelexer.l index eb27ab9ed..b9484159a 100644 --- a/tools/mhmake/src/mhmakelexer.l +++ b/tools/mhmake/src/mhmakelexer.l @@ -672,7 +672,7 @@ export { }
/*---------------------------------------------------------------------------*/
-\$[<@/] {
+\$[<@/$] {
PRINTF(("%s %d: DOLLAREXPR: %s\n",m_InputFileName.c_str(),m_Line,yytext));
theValue.theString=(const char *)yytext;
return mhmakeparser::DOLLAREXPR;
|