From 3f451cafb5ba3a022c8e05cf2d054835f807dd11 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 10 Feb 2010 04:10:10 +0000 Subject: [PATCH] Remove stray DOS newline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95765 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/ShUtil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/lit/lit/ShUtil.py b/utils/lit/lit/ShUtil.py index c4bbb3d3731..c8f933245d3 100644 --- a/utils/lit/lit/ShUtil.py +++ b/utils/lit/lit/ShUtil.py @@ -66,7 +66,7 @@ class ShLexer: return (tok[0], num) elif c == '"': self.eat() - str += self.lex_arg_quoted('"') + str += self.lex_arg_quoted('"') elif not self.win32Escapes and c == '\\': # Outside of a string, '\\' escapes everything. self.eat() -- 2.34.1