| Index: third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| index ae8d4e9fd14dbd3905737d657e350b392aab322e..377d5606472d616432c50e192cf501cfb93e1031 100644
|
| --- a/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/QuotedPrintable.cpp
|
| @@ -74,7 +74,8 @@ void quotedPrintableEncode(const char* input,
|
| currentCharacter != '\t')
|
| requiresEncoding = true;
|
|
|
| - // Space and tab characters have to be encoded if they appear at the end of a line.
|
| + // Space and tab characters have to be encoded if they appear at the end of
|
| + // a line.
|
| if (!requiresEncoding &&
|
| (currentCharacter == '\t' || currentCharacter == ' ') &&
|
| (isLastCharacter ||
|
| @@ -149,7 +150,8 @@ void quotedPrintableDecode(const char* data,
|
| continue;
|
|
|
| if (!isASCIIHexDigit(upperCharacter) || !isASCIIHexDigit(lowerCharacter)) {
|
| - // Invalid sequence, = followed by non hex digits, just insert the characters as is.
|
| + // Invalid sequence, = followed by non hex digits, just insert the
|
| + // characters as is.
|
| out.append('=');
|
| out.append(upperCharacter);
|
| out.append(lowerCharacter);
|
|
|