Fix formatting

This commit is contained in:
Alexander S. Aganichev
2002-11-04 18:59:51 +00:00
parent ad6294124f
commit a39960cd13
15 changed files with 79 additions and 79 deletions

View File

@@ -257,7 +257,7 @@ bool inline samekey(gkey key1, gkey key2) {
return false;
if(key1 == key2)
return true;
if((key1 > 0xFF) || (key2 > 0xFF))
if((key1 > 0xFF) or (key2 > 0xFF))
return false;
return (tolower(key1) == key2) or (tolower(key2) == key1);
}

View File

@@ -2086,7 +2086,7 @@ void MakeLineIndex(GMsg* msg, int margin, bool getvalue, bool header_recode) {
strcpy(msg->charset, chsbuf);
}
}
else if((kludgetype == FSC_CHARSET) || (kludgetype == FSC_CODEPAGE)) {
else if((kludgetype == FSC_CHARSET) or (kludgetype == FSC_CODEPAGE)) {
*chsbuf = NUL;
qpencoded = IsQuotedPrintable(ptr);
if(kludgetype == FSC_CODEPAGE)

View File

@@ -60,7 +60,7 @@ static bool tokenxchg(char*& dst, char* tok, const char* src, int len = 0, int c
char *p = strchr(dst+toklen, '}');
if(p) {
uint dstlen = p-dst-toklen-1;
if(use && dstlen) {
if(use and dstlen) {
strxcpy (buf, dst+toklen+1, dstlen+1);
src = buf;
}