Overview
Comment: | Fix a typo. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
405731e798e57626e94c7a7c6532cf73 |
User & Date: | js on 2013-07-27 17:38:49 |
Other Links: | manifest | tags |
Context
2013-07-28
| ||
01:06 | Add objc_msg_lookup_stret for x86/ELF. check-in: 3aa93c594f user: js tags: trunk | |
2013-07-27
| ||
17:38 | Fix a typo. check-in: 405731e798 user: js tags: trunk | |
2013-07-26
| ||
18:05 | Add objc_msg_lookup_stret for AMD64/Mach-O. check-in: 22eefaaadd user: js tags: trunk | |
Changes
Modified src/OFObject.m from [7eff738717] to [1d6bb87b12].
︙ | ︙ | |||
279 280 281 282 283 284 285 | #if !defined(OF_APPLE_RUNTIME) || defined(__OBJC2__) objc_setUncaughtExceptionHandler(uncaught_exception_handler); #endif #if defined(OF_OBJFW_RUNTIME) objc_forward_handler = forward_handler; objc_forward_handler_stret = forward_handler_stret; | | > | 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | #if !defined(OF_APPLE_RUNTIME) || defined(__OBJC2__) objc_setUncaughtExceptionHandler(uncaught_exception_handler); #endif #if defined(OF_OBJFW_RUNTIME) objc_forward_handler = forward_handler; objc_forward_handler_stret = forward_handler_stret; #elif defined(OF_APPLE_RUNTIME) && \ defined(OF_HAVE_FORWARDING_TARGET_FOR_SELECTOR) objc_setForwardHandler(of_forward, of_forward_stret); #endif #ifdef HAVE_OBJC_ENUMERATIONMUTATION objc_setEnumerationMutationHandler(enumeration_mutation_handler); #endif |
︙ | ︙ |