ObjFW  Diff

Differences From Artifact [736e731460]:

To Artifact [8b9a1eb927]:


246
247
248
249
250
251
252

253




254
255
256
257
258
259
260
246
247
248
249
250
251
252
253

254
255
256
257
258
259
260
261
262
263
264







+
-
+
+
+
+








- (void)appendString: (OFString*)string
{
	if (string == nil)
		@throw [OFInvalidArgumentException newWithClass: isa
						       selector: _cmd];

	[self appendCStringWithoutUTF8Checking: [string cString]
	[self appendCString: [string cString]];
					length: [string cStringLength]];

	if (string->s->isUTF8)
		s->isUTF8 = YES;
}

- (void)appendFormat: (OFConstantString*)format, ...
{
	va_list arguments;

	va_start(arguments, format);