From 055803982d5b998b378899325d6c7aa013fc9d7f Mon Sep 17 00:00:00 2001 From: "bratell%lysator.liu.se" Date: Sat, 22 Jul 2000 17:32:28 +0000 Subject: [PATCH] Fix bug 43813 by removing erroneous test. r=rhp@netscape.com a=brendan@mozilla.org. --- mailnews/mime/src/mimetpfl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mailnews/mime/src/mimetpfl.cpp b/mailnews/mime/src/mimetpfl.cpp index a1f552da7d6d..3e6e554b0bab 100644 --- a/mailnews/mime/src/mimetpfl.cpp +++ b/mailnews/mime/src/mimetpfl.cpp @@ -520,7 +520,7 @@ MimeInlineTextPlainFlowed_parse_line (char *line, PRInt32 length, MimeObject *ob if ('<' == *templinep) intag = 1; if (!intag) { - if ((' ' == *templinep) && !exdata->inflow) { + if (' ' == *templinep) { if (nextSpaceIsNbsp) { *outlinep='&'; outlinep++; @@ -536,7 +536,7 @@ MimeInlineTextPlainFlowed_parse_line (char *line, PRInt32 length, MimeObject *ob } nextSpaceIsNbsp = PR_TRUE; templinep++; - } else if(('\t' == *templinep) && !exdata->inflow) { + } else if('\t' == *templinep) { // Output 4 "spaces" for(int spaces=0; spaces<4; spaces++) { if (nextSpaceIsNbsp) @@ -595,7 +595,7 @@ MimeInlineTextPlainFlowed_parse_line (char *line, PRInt32 length, MimeObject *ob while(*templinep && (*templinep != '\r') && (*templinep != '\n')) { if('<' == *templinep) intag = 1; if(!intag) { - if((' ' == *templinep) && !exdata->inflow) { + if(' ' == *templinep) { if (nextSpaceIsNbsp) { *outlinep='&'; outlinep++; @@ -611,7 +611,7 @@ MimeInlineTextPlainFlowed_parse_line (char *line, PRInt32 length, MimeObject *ob } nextSpaceIsNbsp = PR_TRUE; templinep++; - } else if(('\t' == *templinep) && !exdata->inflow) { + } else if('\t' == *templinep) { // Output 4 "spaces" for(int spaces=0; spaces<4; spaces++) { if (nextSpaceIsNbsp)