ObjFW  Diff

Differences From Artifact [94f32c1680]:

  • File utils/ofarc/OFArc.m — part of check-in [bdbd69ab93] at 2025-05-10 11:29:12 on branch trunk — utils: Use PROGDIR:/Data instead of PROGDIR:/share (user: js size: 24507)

To Artifact [bbcfba3929]:

  • File utils/ofarc/OFArc.m — part of check-in [d3523a33d6] at 2025-05-17 20:56:27 on branch trunk — utils: Add missing break after handling --version (user: js size: 24517) [more...]

336
337
338
339
340
341
342

343
344
345
346
347
348
349
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350







+







			break;
		case 'h':
			help(OFStdOut, true, 0);
			break;
		case '-':
			if ([optionsParser.lastLongOption isEqual: @"version"])
				version();
			break;
		case '=':
			[OFStdErr writeLine: OF_LOCALIZED(
			    @"option_takes_no_argument",
			    @"%[prog]: Option --%[opt] takes no argument",
			    @"prog", [OFApplication programName],
			    @"opt", optionsParser.lastLongOption)];