From 12fe669203935d01cc95b1168fc987eaa19e2186 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 27 May 2004 18:28:32 +0000 Subject: [PATCH] Add support for dos-style files git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13840 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/Stacker/lib/compiler/Lexer.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/Stacker/lib/compiler/Lexer.l b/projects/Stacker/lib/compiler/Lexer.l index e45cdee87f2..a6375d3c16f 100644 --- a/projects/Stacker/lib/compiler/Lexer.l +++ b/projects/Stacker/lib/compiler/Lexer.l @@ -71,7 +71,7 @@ Comment1 [#].*$ /* You can also embed them in ( ... ) */ Comment2 \(.*\) /* We ignore white space */ -White [ \t\n] +White [ \t\r\n] /* jdentifiers start with a % sign */ Identifier [A-Za-z][-A-Za-z0-9_]* -- 2.34.1