summaryrefslogtreecommitdiff
path: root/Lisp
Commit message (Collapse)AuthorAgeFilesLines
* Collect and register all known Objective-C classes at load time.Matthias Benkard2008-02-205-26/+74
| | | | darcs-hash:13dc5d5f8a456e4603e7ced00cf52b3e01e273c2
* Make OBJC-CLASS-NAME->SYMBOL not fail for class names whose characters are ↵Matthias Benkard2008-02-201-1/+2
| | | | | | all upper case. darcs-hash:efeb227563f18f7f698e0386f40280e15a6496b3
* Make PARSE-TYPESPEC aware of typespec suffix strings.Matthias Benkard2008-02-202-14/+25
| | | | darcs-hash:96d2fe4eab2e4db49c60491c3e109bdab2600086
* Objective-C layer: Add objcl_for_each_class_do.Matthias Benkard2008-02-201-0/+4
| | | | darcs-hash:4314d5bd41bf313fc50049b5e839aa09e5d94d19
* Make objcl_add_method capable of adding methods to registered classes.Matthias Benkard2008-02-191-1/+2
| | | | darcs-hash:a29d29425ab1e91101b691224b5ee591b8237961
* Make FIND-OBJC-CLASS-BY-NAME able to find unregistered classes.Matthias Benkard2008-02-191-11/+21
| | | | darcs-hash:a92f0f0992d491f0f4f7172c94447ce90404dcb6
* Avoid sending messages to potentially unregistered classes.Matthias Benkard2008-02-191-0/+2
| | | | darcs-hash:e57bfdafd5e8690f8e875bf6a5a0a10050b77303
* Add function POINTER.Matthias Benkard2008-02-191-4/+8
| | | | darcs-hash:68f3e7d8ce27daf943059dab2663183de1f694c3
* Simplify slot access.Matthias Benkard2008-02-191-15/+16
| | | | darcs-hash:e01b2af67083c4d030aec83dfb1c87e5e2e39b44
* Reimplement slot writing.Matthias Benkard2008-02-192-34/+24
| | | | darcs-hash:54a65f96e6367f42013fef524eeddbeb4b8889ec
* Reimplement slot reading.Matthias Benkard2008-02-194-40/+59
| | | | darcs-hash:bdef9c8f4c3fb2121456295da23fbe679265a15b
* Replace all occurrences of MAKE-POINTER-WRAPPER with INTERN-POINTER-WRAPPER.Matthias Benkard2008-02-181-6/+6
| | | | darcs-hash:f0fc8796bb1bc306d0731296acb8a424b79cb1a5
* Fix Objective-C class registration.Matthias Benkard2008-02-182-2/+11
| | | | darcs-hash:03e58bd27621a0bf46f05cc1ee733da1c7ab1170
* Remove some content-free lines of code from the test suite.Matthias Benkard2008-02-181-5/+0
| | | | darcs-hash:0f0da7b5c8c62f3a2fb945c0f5ed886ecb93ffce
* Remove a spurious FIXME from the test suite.Matthias Benkard2008-02-181-9/+0
| | | | darcs-hash:d0031d614f4eba4381e4eaea7aa7d18be58f4bf0
* Do not allow foreign methods to receive arrays as arguments.Matthias Benkard2008-02-181-9/+3
| | | | darcs-hash:e4df8f6242c1995b1b50592493978f99c707ca00
* Do not allow foreign methods to return arrays.Matthias Benkard2008-02-182-15/+5
| | | | darcs-hash:60f115fc6d14d462f11dc77e1c97b68753f52e90
* Play around with %OBJCL-SET-SLOT-VALUE in order to satisfy the test suite.Matthias Benkard2008-02-171-5/+17
| | | | darcs-hash:8fc945e23d662bdf4708c20b20223805218d6860
* Improve the CLASS-DEFINITION tests.Matthias Benkard2008-02-172-9/+43
| | | | darcs-hash:9f7b9a58aab5c7dfed8e9df10c41381935bf772c
* Synchronise access to *LISP-MANAGED-INSTANCES*.Matthias Benkard2008-02-171-9/+11
| | | | darcs-hash:b2125c11d3e465a389dce6c91432790a706c579b
* Fix INTERN-LISP-MANAGED-FOREIGN-INSTANCE.Matthias Benkard2008-02-171-5/+6
| | | | darcs-hash:952721028097b9740e84d6a6d7a4cf43537a1ef5
* Implement setting of foreign slots.Matthias Benkard2008-02-171-12/+19
| | | | darcs-hash:acea0207a1c3d97c6caf8c515cae332275fc06e7
* Fix the CLASS-DEFINITION test.Matthias Benkard2008-02-171-3/+5
| | | | darcs-hash:1df96c3bd336ea3dd7ee51a90b2ae6baac6adfd8
* Make the compiler macro for INVOKE more robust.Matthias Benkard2008-02-171-2/+5
| | | | darcs-hash:e56ef3368be1babcb16faead9276a36091cb26b5
* Minor cleanups.Matthias Benkard2008-02-172-8/+11
| | | | darcs-hash:57b1ce2455369fba915bd730fe63eacb3e169a25
* Add a class definition test to the test suite.Matthias Benkard2008-02-171-1/+44
| | | | darcs-hash:d6774028b28a45e5983c6100e2dc44b8eccb2dcf
* Minor cleanups.Matthias Benkard2008-02-172-9/+10
| | | | darcs-hash:8202cbfdf90281074ec97355c948315e0151cf0b
* Fix PRINT-OBJECT (EXCEPTION T).Matthias Benkard2008-02-172-2/+12
| | | | darcs-hash:28e399d1243d9825ae590aba3fd55dc1a4d9706c
* Put user-defined classes into the NS namespace.Matthias Benkard2008-02-171-2/+6
| | | | darcs-hash:b5f9b1fba72102c0979b1f31985c557338560263
* Fix ENSURE-OBJECTIVE-C-CLASS-PAIR.Matthias Benkard2008-02-172-17/+34
| | | | darcs-hash:cd2b28bb4e252e25afb6807e32d092fcbd9c0977
* Implement OBJCL-CREATE-CLASS.Matthias Benkard2008-02-172-14/+37
| | | | darcs-hash:410094108d1b68697e4bf6c40a92e0d4dfceedba
* Improve the WITH-FOREIGN-STRING-POOL macro.Matthias Benkard2008-02-172-152/+153
| | | | darcs-hash:368ae035198c23f02565826576535eca63088985
* Implement ENSURE-OBJECTIVE-C-CLASS-PAIR.Matthias Benkard2008-02-173-40/+103
| | | | darcs-hash:ea08a0dcdbed287c1c1e09124a2cb0650a6b52ad
* Implement FOREIGN-CLASS-ENSURE-REGISTERED.Matthias Benkard2008-02-173-65/+24
| | | | darcs-hash:cc3448394e3e337be716275c3e4016a542860fd1
* Fix SLOT-VALUE-USING-CLASS (OBJECTIVE-C-CLASS ...).Matthias Benkard2008-02-172-13/+7
| | | | darcs-hash:37402e60f79e9837371a68a33126e3b68eb32b09
* Make INITIALIZE-INSTANCE (OBJECTIVE-C-CLASS ...) create new Objective-C ↵Matthias Benkard2008-02-162-13/+53
| | | | | | classes upon request. darcs-hash:14de6de0dace5d7e4aaeae48579326e2e43d6aee
* Add module: instance-management.Matthias Benkard2008-02-163-1/+44
| | | | darcs-hash:79549f0b837006321061a524ad376df397a9ab5a
* Objective-C layer: Add functions for determining whether a class is managed ↵Matthias Benkard2008-02-161-0/+17
| | | | | | by Lisp. darcs-hash:2be32db4b0358556b007ad6737f689e04de1e7b3
* Split MAKE-POINTER-WRAPPER into two parts.Matthias Benkard2008-02-163-82/+80
| | | | darcs-hash:4b07101cbbba48fb579cb22ebac8ff8f520552c7
* Further simplify compiler macros.Matthias Benkard2008-02-161-27/+16
| | | | darcs-hash:b79d2b2279d2814e5f92b18106b70f79550166cc
* Add a few locking utility stubs.Matthias Benkard2008-02-162-2/+27
| | | | darcs-hash:89727f37535b1a2b8360f2e9055952034fd6db9f
* Simplify compiler macros.Matthias Benkard2008-02-161-45/+18
| | | | darcs-hash:b94237b9f0fd396e56186a7f3b62c9cce9971c55
* Specialise PRINT-OBJECT for FOREIGN-STRUCT values.Matthias Benkard2008-02-152-5/+16
| | | | darcs-hash:cbdd6159c27549dcc033b9bf38c0bf4fd8c51054
* Class TAGGED-STRUCT: Recover TYPESPEC slot.Matthias Benkard2008-02-151-5/+12
| | | | darcs-hash:aa7ba6f0790527c765455b9347bf8cba78d7186c
* Refine the public interface to Lisp-managed foreign structs and unions.Matthias Benkard2008-02-154-18/+36
| | | | darcs-hash:b3c869d86d1e4655ec1562dade69cbdb93600eed
* Improve automatic memory management facilities for structs and unions.Matthias Benkard2008-02-151-19/+44
| | | | darcs-hash:dde4d60386792d18b97c858a681cfaf20ee4ebef
* Add automatic finalisation to struct wrappers.Matthias Benkard2008-02-152-7/+26
| | | | darcs-hash:1e1b7811aa26338c747a031d3cf810f621cf12d9
* Wrap returned structs with TAGGED-STRUCT instances.Matthias Benkard2008-02-152-32/+26
| | | | darcs-hash:ddf05fa12ece35775cbf4cf25fad2903db1f3753
* System refactoring.Matthias Benkard2008-02-152-16/+16
| | | | darcs-hash:961c2ecf3be60a2a4abcfd15f3e51b5ccfb163c0
* LOW-LEVEL-INVOKE: Support structs and unions as return values.Matthias Benkard2008-02-151-4/+21
| | | | darcs-hash:a9f8de5297e856e6c7f05ccb34a8506d47ef9175