forked from OSchip/llvm-project
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:
parent
22910a08a0
commit
36ded45e5d
|
@ -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 */ }
|
||||
|
|
Loading…
Reference in New Issue