Remove stray DOS newline.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95765 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2010-02-10 04:10:10 +00:00
parent 4acdede43e
commit 3f451cafb5

View File

@ -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()