summaryrefslogtreecommitdiff
path: root/Lisp
Commit message (Collapse)AuthorAgeFilesLines
...
* Acquire the exception lock when returning from a callback.Matthias Benkard2008-03-043-7/+9
| | | | darcs-hash:f644e3e364ebb7bd2c81aa2c7f83a4887ac644d8
* Implement DESCRIBE-OBJECT (EXCEPTION T).Matthias Benkard2008-03-041-10/+9
| | | | darcs-hash:47438eafc656ab7597bd008586346cd52287e670
* Fix function POINTER for arguments of type EXCEPTION.Matthias Benkard2008-03-041-1/+1
| | | | darcs-hash:a2605bdf40d3be4bb2950c34cb275d84cd68758f
* Test CLASS-DEFINITION: Do not define a method specialised over (EQL +NIL+).Matthias Benkard2008-03-042-5/+5
| | | | darcs-hash:f8274fbf2ad34ff49cb274d45fb82468850128ea
* In callbacks, DECLARE the selector argument IGNORABLE.Matthias Benkard2008-03-041-0/+1
| | | | darcs-hash:bff6a2e538d5c8fef6d09992e8e7405968373dd6
* Add a debugging aid to ADD-METHOD (OBJECTIVE-C-GENERIC-FUNCTION ↵Matthias Benkard2008-03-041-0/+4
| | | | | | OBJECTIVE-C-METHOD). darcs-hash:002220739b73a2ef8394655e7757cab7ba10eb5e
* Fix the method definition test case.Matthias Benkard2008-03-041-3/+5
| | | | darcs-hash:f72e60ebe476b5e25cb4710d3027833ff776a32d
* Omit the selector argument when forwarding foreign invocations to generic ↵Matthias Benkard2008-03-041-1/+4
| | | | | | functions. darcs-hash:d0e02549886461cd7837b70b70013be9e2ac507c
* Objective-C layer: Add function objcl_test_foo.Matthias Benkard2008-03-041-0/+2
| | | | darcs-hash:c52655ddfd12cd8a69285250252705606f3bce35
* Fix objcl_create_imp.Matthias Benkard2008-03-042-5/+6
| | | | darcs-hash:259fe285f4dde3cb5d6a964593524f7e9619faf4
* Use INTERN-LISP-VALUE for argument conversion.Matthias Benkard2008-03-044-21/+20
| | | | darcs-hash:2f57dd53bfa6b2aa44474232042d9578af720c22
* Fix a test that assumed (CAR '(:FOO :BAR)) not to be CONSTANTP.Matthias Benkard2008-03-041-1/+1
| | | | darcs-hash:f8ba983e113d533c07e6469fe8882aaab7f4ffd9
* Avoid calling objcl_class_name on unregistered classes.Matthias Benkard2008-03-032-0/+2
| | | | darcs-hash:ea38f791e7f2bdc840e92709e1b915d985cc9700
* objcl_create_imp: Make mprotect(2) errors non-fatal.Matthias Benkard2008-03-031-1/+1
| | | | darcs-hash:61cdfff143da2c65b30b3f32c77e4c9ef98b704e
* Introduce function INTERN-CALLBACK-NAME.Matthias Benkard2008-03-031-1/+15
| | | | darcs-hash:5f2cb0e84fcace08fc832adaf3e48728fd76356c
* Implement ADD-METHOD :AFTER (OBJECTIVE-C-GENERIC-FUNCTION OBJECTIVE-C-METHOD).Matthias Benkard2008-03-034-2/+78
| | | | darcs-hash:16207045b44287e0f3f332937d826d1cc6c44296
* Add function TYPESPEC.Matthias Benkard2008-03-032-3/+9
| | | | darcs-hash:f36f563a44c43c4fdf5d7c354ea4937afd91eb16
* Make INTERN-POINTER-WRAPPER work with the new keyword type specifiers.Matthias Benkard2008-03-031-7/+7
| | | | darcs-hash:0e08a15a056adda2ad9872d9785d95a048ee2ac4
* Implement the CLOS part of the method definition facility.Matthias Benkard2008-03-031-0/+112
| | | | darcs-hash:fe4d4b0cd4f99af582cd299de99d2b81fc03ac49
* Add stub for INTERN-LISP-VALUE.Matthias Benkard2008-03-031-0/+14
| | | | darcs-hash:42953a98356841268108071d3d0ec701e8514bf1
* Define type OBJECTIVE-C-TYPE-KEYWORD.Matthias Benkard2008-03-031-0/+9
| | | | darcs-hash:e5b50879e9dd0bf3a09fc7cb99aa24bc91bb7e89
* Allow keyword type specifiers :ID, :CLASS, :EXCEPTION, :SELECTOR, and :POINTER.Matthias Benkard2008-03-031-0/+5
| | | | darcs-hash:b7f33cb59f97af5eadcbe8985fc4d3ffab883d9a
* When compiling compiler macros, also define needed utility functions at ↵Matthias Benkard2008-03-031-12/+13
| | | | | | compile-time. darcs-hash:6772d8a7995c6f19b5f6116e0adec26bfd6fe816
* Add Lisp value wrapper classes MLKLispString, MLKLispArray, and MLKLispList.Matthias Benkard2008-03-031-4/+54
| | | | darcs-hash:3dc87ce841df388836310ebc486b20c7214d68e4
* Introduce an Objective-C class for wrapping Lisp values.Matthias Benkard2008-03-021-0/+37
| | | | darcs-hash:47920ab6598799fca44c964c3fa6a3dfb20389c9
* Fix the compiler macro for INVOKE.Matthias Benkard2008-03-022-7/+40
| | | | darcs-hash:f76cc3530507e408704652d52b86b434e508c18d
* Minor cleanups.Matthias Benkard2008-02-211-28/+0
| | | | darcs-hash:c0614dcedf9c9c6050445219688b1498509df676
* Disable load-time class collection.Matthias Benkard2008-02-201-3/+5
| | | | darcs-hash:3e51e222ef312be850a6485f173b008ce6049a44
* Assign the metaclasses of metaclasses correctly.Matthias Benkard2008-02-203-5/+10
| | | | darcs-hash:e393681b86a1b90b8023281fea1cff5b8fa33a44
* Objective-C layer: Random improvements.Matthias Benkard2008-02-201-4/+3
| | | | darcs-hash:ba7be3f88a66fb514aa35c9d3aa4036fa49fc5d6
* 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