Remove stray DOS newline.
authorDaniel Dunbar <daniel@zuster.org>
Wed, 10 Feb 2010 04:10:10 +0000 (04:10 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Wed, 10 Feb 2010 04:10:10 +0000 (04:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95765 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/ShUtil.py

index c4bbb3d3731d53dacb835ca1b12e3c5064b658c0..c8f933245d31c7fad93705916c04792b3ac17d57 100644 (file)
@@ -66,7 +66,7 @@ class ShLexer:
                 return (tok[0], num)                    
             elif c == '"':
                 self.eat()
-                str += self.lex_arg_quoted('"')\r
+                str += self.lex_arg_quoted('"')
             elif not self.win32Escapes and c == '\\':
                 # Outside of a string, '\\' escapes everything.
                 self.eat()