106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
+ (void)initialize
{
if (self != [OFINISection class])
return;
needsEscapeCharacterSet = [[OFCharacterSet alloc]
initWithCharactersInString: @"\r\n\f\"\\="];
}
- (instancetype)of_initWithName: (OFString *)name OF_DIRECT
{
self = [super init];
@try {
|
|
|
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
+ (void)initialize
{
if (self != [OFINISection class])
return;
needsEscapeCharacterSet = [[OFCharacterSet alloc]
initWithCharactersInString: @"\r\n\f\"\\=;#"];
}
- (instancetype)of_initWithName: (OFString *)name OF_DIRECT
{
self = [super init];
@try {
|