summaryrefslogtreecommitdiff
path: root/Lisp
Commit message (Collapse)AuthorAgeFilesLines
* Add OBJECTIVE-C-CLASS, a metaclass for Objective-C class wrappers.Matthias Benkard2008-02-021-0/+142
| | | | darcs-hash:edb69af98619671f830ff842fb3e69ca369ee8dd
* Fix an undefined variable warning.Matthias Benkard2008-02-021-1/+1
| | | | darcs-hash:424aafab701bb0e18f6af709d15c7ef2250303cc
* Objective-C layer: Add function objcl_objc2_p.Matthias Benkard2008-01-291-0/+5
| | | | darcs-hash:e9c9605cc47cc04e36e2ba9e60f76aea097e77bd
* Apply the LGPLv3 to all the code previously released under the GPLv3.Matthias Benkard2008-01-2618-108/+108
| | | | darcs-hash:d09e69f4f9d07e98b5bc8d68d120d50d1ee01848
* Fix the spelling of `Objective-C' in both code and documentation.Matthias Benkard2008-01-265-37/+37
| | | | darcs-hash:065bdac36eeb490472284101a6d19409d551109b
* Support case-sensitive selector designators.Matthias Benkard2008-01-264-20/+136
| | | | darcs-hash:da29e9f38c99f5a9e558edd20afff7400fced2e4
* Improve CLISP compatibility.Matthias Benkard2007-10-181-1/+6
| | | | darcs-hash:ed5c2f6e5f03f8adabfb89279d275a7ce88821c7
* Support Objective-C code compilation via ASDF.Matthias Benkard2007-10-131-9/+3
| | | | darcs-hash:ef27415b24423ea9a86ff20f7dde1ca55fa01df1
* FIND-SELECTOR: Make ERRORP default to T.Matthias Benkard2007-10-105-15/+14
| | | | darcs-hash:629ac814cc7f7427b1b1cbe71448a670c37c0171
* Make compile-time selector warnings work on the NeXT runtime, clean the ↵Matthias Benkard2007-10-102-16/+114
| | | | | | Objective-C layer up a bit. darcs-hash:bff1454e2749c658ed0d0ad4eb51c4b1802e6f40
* Make PRIMITIVE-INVOKE compatible with Allegro CL.Matthias Benkard2007-10-043-16/+27
| | | | darcs-hash:fbad6db938521eb19fe3bf74ed61ad4577651276
* Unit tests: Don't expect FIND-SELECTOR to return NIL.Matthias Benkard2007-10-041-1/+2
| | | | darcs-hash:152c854a73df5076049538ef29a58ab93c3dabdb
* Make type handling work on the GNU runtime again.Matthias Benkard2007-10-041-12/+8
| | | | darcs-hash:fc311f5f95252858c3d57007d43f5eb327db7cd6
* Mimic the way PyObjC handles types.Matthias Benkard2007-10-045-19/+66
| | | | darcs-hash:d7cf81f2dd93817e55a04816f3851fabce3dac55
* Move PARSE-TYPE into a new module, as it doesn't really belong to the ↵Matthias Benkard2007-10-042-152/+170
| | | | | | Objective-C layer abstraction. darcs-hash:6bd566547259dd8bef79dbb6afb71b22413485ec
* Update documentation.Matthias Benkard2007-09-266-17/+325
| | | | darcs-hash:32d8156e02effa3d43909670add8ac0701acba62
* Make OBJC-EQUAL check for OBJC-EQLity before trying isEqual:.Matthias Benkard2007-09-261-5/+6
| | | | darcs-hash:00a735f71d9c0f34a711e2bf83a4224770009e35
* Add FIND-OBJC-META-CLASS, fix some minor bugs.Matthias Benkard2007-09-262-2/+33
| | | | darcs-hash:1ae0dd35e64b278b944bc797847ccfedb97ea471
* Rename OBJCL-CLASS-NAME to OBJC-CLASS-NAME.Matthias Benkard2007-09-262-5/+5
| | | | darcs-hash:182cc32ffe3cf9105b2da171ffeba042da419624
* Apply the GPLv3 to my code and clarify the license of the PyObjC parts.Matthias Benkard2007-09-2617-0/+289
| | | | darcs-hash:f938f41421ba30e34d6bef095829ac1950b4dfa9
* Fix condition signalling.Matthias Benkard2007-09-242-12/+23
| | | | darcs-hash:d14fd897e9b232e09261823625f1083b6d37aa11
* Make memory management a lot saner.Matthias Benkard2007-09-237-68/+114
| | | | darcs-hash:274be9f0ed5fa33e5e883d7b3df57f00c567e777
* Objective-C layer: Add functions for determining the Objective-C runtime ↵Matthias Benkard2007-09-213-1/+46
| | | | | | used and for asking for the size of types by typespec. darcs-hash:197f36840c1568c5b3431833a0118d06729b9247
* Improve method invocation docstrings.Matthias Benkard2007-09-211-3/+20
| | | | darcs-hash:97cbabf4e3fb9b9832ca798b01d571c3d8b56778
* Add a compiler macro for INVOKE.Matthias Benkard2007-09-212-65/+89
| | | | darcs-hash:93b465085160cfe9dc8978554acdfca73670f6f6
* Make the test suite work on Mac OS X.Matthias Benkard2007-09-213-25/+37
| | | | darcs-hash:d91ddd8e48860553eae62249043f13dd973a40c2
* Add condition classes NO-SUCH-SELECTOR and MESSAGE-NOT-UNDERSTOOD.Matthias Benkard2007-09-215-13/+48
| | | | darcs-hash:e86722d8de9c97edf6ee9665423d57b0239fe910
* Prune yet another bunch of unused code chunks.Matthias Benkard2007-09-212-62/+0
| | | | darcs-hash:b90a1129a53bdc6fb3762a0d37bb797711d7037e
* LOW-LEVEL-INVOKE: Cosmetic changes.Matthias Benkard2007-09-211-6/+6
| | | | darcs-hash:7e4e25d9e5b35ca41cc7cdbf3aa03e0c38840c78
* Remove even more code that has become obsolete through the new version of ↵Matthias Benkard2007-09-214-111/+1
| | | | | | INVOKE-BY-NAME. darcs-hash:06fc98c5e106ac3fc0fd07ac5cc226ea431d265d
* Objective-C layer: Remove the code needed by the obsolete version of ↵Matthias Benkard2007-09-212-39/+0
| | | | | | INVOKE-BY-NAME. darcs-hash:e0df5f7b1d7a3aa5e06170dbe318b31ebeb73241
* Rip the old INVOKE-BY-NAME code out and replace it with INVOKE-WITH-CONVERSION.Matthias Benkard2007-09-211-60/+29
| | | | darcs-hash:387f803fd82310a0b84948e46c6d0c0619c54ab7
* LOW-LEVEL-INVOKE: Correctly pass typespec data on to the Objective-C layer.Matthias Benkard2007-09-211-1/+1
| | | | darcs-hash:a2f860fe7c6740ad1aac1887ba7895e927ebdecd
* LOW-LEVEL-INVOKE: Fix indentation.Matthias Benkard2007-09-211-94/+98
| | | | darcs-hash:b089db25b963117e6b5eb49b337f99cb8ded6338
* Stylistic improvements.Matthias Benkard2007-09-201-5/+8
| | | | darcs-hash:5c14bcd5a90050f6b9845057ae09235460a3ca23
* Fix the coercion rules for FLOAT and BOOLEAN values.Matthias Benkard2007-09-205-27/+28
| | | | darcs-hash:d24e207d8f1e0357c8a63ec058ec61318675e89f
* Make +NIL+ a runtime-only constant.Matthias Benkard2007-09-181-1/+1
| | | | darcs-hash:ea2b9fa98340a19c90f9e85f4e75cae52b6edd77
* Simplify the Objective-C layer, make the newest additions compatible with ↵Matthias Benkard2007-09-183-47/+33
| | | | | | the Apple runtime. darcs-hash:c6ec225e9ccf78e267f1a4985971ec9ac3239bc8
* Really support arrays, structs, and unions.Matthias Benkard2007-09-181-3/+17
| | | | darcs-hash:fe9faa15004fae4ab16f95f4ba9a6edf8e260945
* INVOKE-WITH-CONVERSION: Support arrays, structs, and unions, and convert ↵Matthias Benkard2007-09-184-33/+85
| | | | | | Lisp objects into Objective-C instances automatically. darcs-hash:decc92c91c315c1e347b9f5327bfb6e21ccca9a8
* Objective-C layer: Add functions for dealing with classes and metaclasses.Matthias Benkard2007-09-184-14/+66
| | | | darcs-hash:9ce15bb5fff3fb127cf4f6b72e70fa58c1cc2345
* INVOKE-WITH-CONVERSION: Support classes as message receivers.Matthias Benkard2007-09-172-21/+42
| | | | darcs-hash:f27d973190d6ada1ef35ab041229d1c0b88ee11c
* LOW-LEVEL-INVOKE: Support selectors as arguments.Matthias Benkard2007-09-171-1/+4
| | | | darcs-hash:0dc99e4177c665793fe10972f86d6f5f1507c742
* Cache the return values of RETRIEVE-METHOD-SIGNATURE-INFO.Matthias Benkard2007-09-172-1/+29
| | | | darcs-hash:17a199077cab37197bbcbc48d58100c4dd73e76e
* LOW-LEVEL-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+5
| | | | darcs-hash:50cce0d04ea864174e9fdfea4821fe0b79e46452
* LOW-LEVEL-INVOKE: Fix return type lossage.Matthias Benkard2007-09-171-1/+1
| | | | darcs-hash:21a9356e10f813bd60daa001973cfb37a2ceb66a
* PRIMITIVE-INVOKE: Don't break upon invocations with a void return type.Matthias Benkard2007-09-171-1/+4
| | | | darcs-hash:85d12638eaa8b5a775a9f347b30e0b733c6dfd52
* Add INVOKE-WITH-CONVERSION, a reliable INVOKE-BY-NAME alternative.Matthias Benkard2007-09-171-0/+149
| | | | darcs-hash:fb4eed75cbc7db6627f756944232bc1944eb5a5f
* Juggle some definitions around to make the compiler happy.Matthias Benkard2007-09-171-9/+8
| | | | darcs-hash:c0210649a47d759ee7efbf23eb03ff7e9aa02261
* PRIMITIVE-INVOKE: Make the compiler macro warn the user about unknown methods.Matthias Benkard2007-09-171-3/+9
| | | | darcs-hash:9981c64c80204f96e4ae279dcccf61700125f766