Fix formatting
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
@@ -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)
|
||||
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user