mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
Fixup encoding issue
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39848 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
751e998014
commit
73f18a6998
1 changed files with 4 additions and 1 deletions
|
@ -6433,7 +6433,10 @@ appendString(NSMutableData *m, NSUInteger offset, NSUInteger fold,
|
|||
shouldSet = NO;
|
||||
}
|
||||
}
|
||||
else if (v == nil || [v isEqualToString: @"7bit"] == YES)
|
||||
else if (v == nil
|
||||
|| [v isEqualToString: @"7bit"] == YES
|
||||
|| [v isEqualToString: @"quoted-printable"] == YES
|
||||
|| [v isEqualToString: @"x-uuencode"] == YES)
|
||||
{
|
||||
/*
|
||||
* For 7bit encoding, we can accept the setting if the content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue