index
:
mulk/objective-cl
master
Two-way Common-Lisp–Objective-C bridge.
Matthias Benkard
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lisp
/
method-invocation.lisp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Apply the LGPLv3 to all the code previously released under the GPLv3.
Matthias Benkard
2008-01-26
1
-6
/
+6
*
Fix the spelling of `Objective-C' in both code and documentation.
Matthias Benkard
2008-01-26
1
-4
/
+4
*
Support case-sensitive selector designators.
Matthias Benkard
2008-01-26
1
-4
/
+34
*
FIND-SELECTOR: Make ERRORP default to T.
Matthias Benkard
2007-10-10
1
-2
/
+6
*
Make PRIMITIVE-INVOKE compatible with Allegro CL.
Matthias Benkard
2007-10-04
1
-11
/
+19
*
Mimic the way PyObjC handles types.
Matthias Benkard
2007-10-04
1
-1
/
+1
*
Apply the GPLv3 to my code and clarify the license of the PyObjC parts.
Matthias Benkard
2007-09-26
1
-0
/
+17
*
Make memory management a lot saner.
Matthias Benkard
2007-09-23
1
-2
/
+2
*
Improve method invocation docstrings.
Matthias Benkard
2007-09-21
1
-3
/
+20
*
Add a compiler macro for INVOKE.
Matthias Benkard
2007-09-21
1
-65
/
+19
*
Make the test suite work on Mac OS X.
Matthias Benkard
2007-09-21
1
-1
/
+0
*
Add condition classes NO-SUCH-SELECTOR and MESSAGE-NOT-UNDERSTOOD.
Matthias Benkard
2007-09-21
1
-9
/
+12
*
Prune yet another bunch of unused code chunks.
Matthias Benkard
2007-09-21
1
-39
/
+0
*
LOW-LEVEL-INVOKE: Cosmetic changes.
Matthias Benkard
2007-09-21
1
-6
/
+6
*
Remove even more code that has become obsolete through the new version of INV...
Matthias Benkard
2007-09-21
1
-10
/
+0
*
Rip the old INVOKE-BY-NAME code out and replace it with INVOKE-WITH-CONVERSION.
Matthias Benkard
2007-09-21
1
-60
/
+29
*
LOW-LEVEL-INVOKE: Correctly pass typespec data on to the Objective-C layer.
Matthias Benkard
2007-09-21
1
-1
/
+1
*
LOW-LEVEL-INVOKE: Fix indentation.
Matthias Benkard
2007-09-21
1
-94
/
+98
*
Stylistic improvements.
Matthias Benkard
2007-09-20
1
-5
/
+8
*
Fix the coercion rules for FLOAT and BOOLEAN values.
Matthias Benkard
2007-09-20
1
-23
/
+13
*
Make +NIL+ a runtime-only constant.
Matthias Benkard
2007-09-18
1
-1
/
+1
*
Simplify the Objective-C layer, make the newest additions compatible with the...
Matthias Benkard
2007-09-18
1
-9
/
+6
*
Really support arrays, structs, and unions.
Matthias Benkard
2007-09-18
1
-3
/
+17
*
INVOKE-WITH-CONVERSION: Support arrays, structs, and unions, and convert Lisp...
Matthias Benkard
2007-09-18
1
-26
/
+71
*
Objective-C layer: Add functions for dealing with classes and metaclasses.
Matthias Benkard
2007-09-18
1
-3
/
+2
*
INVOKE-WITH-CONVERSION: Support classes as message receivers.
Matthias Benkard
2007-09-17
1
-10
/
+24
*
LOW-LEVEL-INVOKE: Support selectors as arguments.
Matthias Benkard
2007-09-17
1
-1
/
+4
*
Cache the return values of RETRIEVE-METHOD-SIGNATURE-INFO.
Matthias Benkard
2007-09-17
1
-1
/
+3
*
LOW-LEVEL-INVOKE: Don't break upon invocations with a void return type.
Matthias Benkard
2007-09-17
1
-1
/
+5
*
LOW-LEVEL-INVOKE: Fix return type lossage.
Matthias Benkard
2007-09-17
1
-1
/
+1
*
PRIMITIVE-INVOKE: Don't break upon invocations with a void return type.
Matthias Benkard
2007-09-17
1
-1
/
+4
*
Add INVOKE-WITH-CONVERSION, a reliable INVOKE-BY-NAME alternative.
Matthias Benkard
2007-09-17
1
-0
/
+149
*
PRIMITIVE-INVOKE: Make the compiler macro warn the user about unknown methods.
Matthias Benkard
2007-09-17
1
-3
/
+9
*
PRIMITIVE-INVOKE: Make the compiler macro degrade gracefully when a constant ...
Matthias Benkard
2007-09-17
1
-1
/
+6
*
Define a compiler macro for PRIMITVE-INVOKE that moves constant selector conv...
Matthias Benkard
2007-09-17
1
-0
/
+14
*
PRIMITIVE-INVOKE: Simplify memory allocation.
Matthias Benkard
2007-09-16
1
-49
/
+57
*
Add classes for tagged pointers.
Matthias Benkard
2007-09-16
1
-0
/
+1
*
PRIMITIVE-INVOKE: Support non-pointer arguments.
Matthias Benkard
2007-09-16
1
-4
/
+9
*
PRIMITIVE-INVOKE: More refactoring.
Matthias Benkard
2007-09-16
1
-63
/
+50
*
PRIMITIVE-INVOKE: Refactoring.
Matthias Benkard
2007-09-16
1
-84
/
+80
*
PRIMITIVE-INVOKE: Support string arguments.
Matthias Benkard
2007-09-16
1
-65
/
+77
*
PRIMITIVE-INVOKE: Fix a bunch of memory access bugs.
Matthias Benkard
2007-09-16
1
-69
/
+76
*
Add test cases for PRIMITIVE-INVOKE and fix some stupid bugs.
Matthias Benkard
2007-09-16
1
-4
/
+2
*
Remember to pass self and _cmd to methods.
Matthias Benkard
2007-09-16
1
-3
/
+7
*
Reimplement PRIMITIVE-INVOKE and rename the old version UNSAFE-PRIMITIVE-INVOKE.
Matthias Benkard
2007-09-15
1
-6
/
+74
*
Fix a bug in number-to-pointer conversion.
Matthias Benkard
2007-09-15
1
-1
/
+1
*
Introduce PRIMITIVE-INVOKE, a lower-level INVOKE-BY-NAME alternative written ...
Matthias Benkard
2007-09-14
1
-0
/
+34
*
Refactor object coercion.
Matthias Benkard
2007-09-14
1
-46
/
+35
*
Code reorganisation.
Matthias Benkard
2007-09-14
1
-0
/
+141
*
Add a SELECTOR function and use coerced selectors in Objective C code rather ...
Matthias Benkard
2007-08-13
1
-5
/
+16
[next]