Commit dd59222d authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: Support # as comment delimiter in commands.

parent 9061634a
......@@ -138,6 +138,7 @@ STRING \"[^\n"]+\"
if (!dbg_num_processes() && YYSTATE == INITIAL) {BEGIN(NOPROCESS);}
<<EOF>> { return tEOF; }
<*>"#"[^\n]* /* Skip comments */
<*>\n { BEGIN(INITIAL); syntax_error = 0; return tEOL; }
/* Indicates end of command. Reset state. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment