Don't include newlines in the whitespace before newline (WSNL) rule.

Fix the comment for WSNL to describe its actual function.

llvm-svn: 40612
This commit is contained in:
Reid Spencer 2007-07-31 03:55:43 +00:00
parent 22910a08a0
commit 36ded45e5d
1 changed files with 2 additions and 2 deletions

View File

@ -177,8 +177,8 @@ HexFPConstant 0x[0-9A-Fa-f]+
*/
HexIntConstant [us]0x[0-9A-Fa-f]+
/* WSNL - shorthand for newline followed by whitespace */
WSNL [ \r\t\n]*$
/* WSNL - shorthand for whitespace followed by newline */
WSNL [ \r\t]*$
%%
{Comment} { /* Ignore comments for now */ }