Differences From Artifact [95a3ff60d9]:
- File
utils/ofzip/OFZIP.m
— part of check-in
[c9621825fc]
at
2017-06-04 18:48:03
on branch trunk
— Treat MorphOS + ixemul as a separate platform
This reduces the ifdef hell and makes much more sense, as with ixemul,
no native calls are allowed. (user: js, size: 13854) [annotate] [blame] [check-ins using]
To Artifact [9f9989e04e]:
- File
utils/ofzip/OFZIP.m
— part of check-in
[23e57c5040]
at
2017-07-22 23:04:35
on branch trunk
— OFFile: Simplify mode
This removes "b" for binary and always uses binary, as there is no good
reason to not use binary. (user: js, size: 13853) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
311 312 313 314 315 316 317 | _archivePath = [path copy]; if (path == nil) return nil; @try { file = [OFFile fileWithPath: path | | | 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | _archivePath = [path copy]; if (path == nil) return nil; @try { file = [OFFile fileWithPath: path mode: @"r"]; } @catch (OFOpenItemFailedException *e) { OFString *error = [OFString stringWithCString: strerror([e errNo]) encoding: [OFLocalization encoding]]; [of_stderr writeString: @"\r"]; [of_stderr writeLine: OF_LOCALIZED( @"failed_to_open_file", |
︙ | ︙ |