203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
-
+
+
-
-
+
+
|
/* Dropped after parsing options */
sandbox.allowsUnveil = true;
[OFApplication of_activateSandbox: sandbox];
#endif
#ifndef OF_AMIGAOS
[OFLocale addLocalizationDirectory: @LOCALIZATION_DIR];
[OFLocale addLocalizationDirectoryURI:
[OFURI fileURIWithPath: @LOCALIZATION_DIR]];
#else
[OFLocale addLocalizationDirectory:
@"PROGDIR:/share/ofarc/localization"];
[OFLocale addLocalizationDirectoryURI:
[OFURI fileURIWithPath: @"PROGDIR:/share/ofarc/localization"]];
#endif
optionsParser = [OFOptionsParser parserWithOptions: options];
while ((option = [optionsParser nextOption]) != '\0') {
switch (option) {
case 'f':
if (_overwrite < 0)
|