summaryrefslogtreecommitdiff
path: root/Lisp
Commit message (Collapse)AuthorAgeFilesLines
* Debian: Satisfy linda and lintian.Matthias Benkard2008-03-081-1/+1
| | | | darcs-hash:ae2f175eb7a31ce4dd08588c0e3516c69e97eb14
* debian/watch: Fix the link pattern.Matthias Benkard2008-03-081-1/+1
| | | | darcs-hash:8de354f3cddb4c0607ad5e789f1ad73a298051e9
* Prepare the build system for separate compilation of libobjcl.Matthias Benkard2008-03-071-0/+1
| | | | darcs-hash:8bbbddc21828e04ddbf1a075f7186774a7d1c57d
* Aesthetic improvements.Matthias Benkard2008-03-072-11/+3
| | | | darcs-hash:8112f3e9cc11608d8f7c2f1862b24f8e0f24b08f
* Correctly handle methods with a :VOID return type.Matthias Benkard2008-03-071-1/+1
| | | | darcs-hash:ed2910a15192d06f60977f9c4bfdeddc44dbe6f9
* Implement memory management for Lisp-managed instances.Matthias Benkard2008-03-071-3/+29
| | | | darcs-hash:88a7136f0fa0768b525a44de92100c15a6f8792a
* Add method COERCE-OBJECT (T (EQL :VOID)).Matthias Benkard2008-03-071-0/+4
| | | | darcs-hash:b093bf9357fecdd28bc81482cb75db967e943e6f
* Call ENSURE-GENERIC-FUNCTION-USING-CLASS at compile-time as well.Matthias Benkard2008-03-071-1/+1
| | | | darcs-hash:ac21bf3688413d3cd95cc68748f3a68546c586d6
* INTERN-CALLBACK-NAME: Correctly distinguish callbacks by the classes they ↵Matthias Benkard2008-03-071-1/+2
| | | | | | are defined for. darcs-hash:3eb9e5d6e38eede09a912519cc1c10c216dc02ac
* Use ENSURE-GENERIC-FUNCTION-USING-CLASS instead of ENSURE-GENERIC-FUNCTION.Matthias Benkard2008-03-072-3/+16
| | | | darcs-hash:be3185662285bada199f68b1622c0be4ab399f29
* Remove an obsolete debugging aid.Matthias Benkard2008-03-071-4/+0
| | | | darcs-hash:521ffa1607066cc2f7fb52c116e3d0b85db4d31a
* Have callbacks properly return pointers to :ID, :CLASS and :SELECTOR values.Matthias Benkard2008-03-071-11/+15
| | | | darcs-hash:d22c6d2a2f51f9653328a76b1de9059f3a9ff61b
* Eliminate a potential conflict between the documentation and the test suite.Matthias Benkard2008-03-071-2/+2
| | | | darcs-hash:99ee78d8d50d2d5486a973910d4a724dde67892b
* Update documentation.Matthias Benkard2008-03-071-8/+8
| | | | darcs-hash:cd586d178636f50a46bd5a7c07d4827eda645f3f
* Fix COERCE-OBJECT (... (EQL :ID)).Matthias Benkard2008-03-072-11/+8
| | | | darcs-hash:cee5f53f4c7c73bb8905d76fa6417b74112a3f42
* Fix code formatting.Matthias Benkard2008-03-061-14/+15
| | | | darcs-hash:b5c8b31cd5192c30558be767843ef375ef1889e1
* Remove a bunch of DEFINE-OBJECTIVE-C-GENERIC-FUNCTION calls.Matthias Benkard2008-03-063-8/+6
| | | | darcs-hash:83d1f95687bb761a7fb70c1a901722d4cd2c5caf
* DEFINE-OBJECTIVE-C-METHOD: Silently define a suitable ↵Matthias Benkard2008-03-061-18/+28
| | | | | | OBJECTIVE-C-GENERIC-FUNCTION if needed. darcs-hash:fa3bfc33170f12fd7d965c08eafd4005e9ac8a8d
* Make DEFINE-OBJECTIVE-C-METHOD macroexpand correctly even if the receiving ↵Matthias Benkard2008-03-061-2/+2
| | | | | | class has not yet been defined. darcs-hash:8556a7cb9a41f5fb6530fef6fa71b222b61af44b
* Make OBJECTIVE-C-METHODs dispatch on the class they have been defined for.Matthias Benkard2008-03-061-5/+14
| | | | darcs-hash:93ae22beaabb2a9f162a297a8c314d36e882a4ab
* Add tests for SUPER calls.Matthias Benkard2008-03-061-5/+30
| | | | darcs-hash:ba79356bb11de7346137e998a4e2db696d325e51
* Refactor data conversion.Matthias Benkard2008-03-064-146/+201
| | | | darcs-hash:9ff52b1ed764ab58522070fc35eca4ab97844a1c
* SUPER: Pass the superclass instead of the class itself to ↵Matthias Benkard2008-03-061-1/+2
| | | | | | INVOKE-BY-NAME-SUPER-V. darcs-hash:95c3d39d11f5ee0c4b334f6316b01de9bc9dc9ce
* DECLARE local SUPER functions IGNORABLE.Matthias Benkard2008-03-061-0/+1
| | | | darcs-hash:4d2d95b7fcfbed689cca92e90e864cd1e421f51a
* SUPER: Correctly capture all method arguments.Matthias Benkard2008-03-061-2/+1
| | | | darcs-hash:f53a200995f21b51f64916d2a57938d78e8acc5e
* Document SUPER.Matthias Benkard2008-03-061-2/+56
| | | | darcs-hash:380bb758627d0dd85aed6de3c23d67f89ba42b63
* SUPER: Capture method arguments before executing the method body.Matthias Benkard2008-03-061-6/+5
| | | | darcs-hash:73a448dbf57d0847e1bc3e749a2494c2810e6472
* Support super calls.Matthias Benkard2008-03-064-10/+47
| | | | darcs-hash:d6b9645fe36711876226cd69bbbc4fce66a94fbb
* Implement INTERN-LISP-VALUE.Matthias Benkard2008-03-061-6/+7
| | | | darcs-hash:78901552fd2a363337b9d4742e0ddf80de731b3f
* Implement the rest of NS::MLK-LISP-STRING, NS::MLK-LISP-ARRAY, and ↵Matthias Benkard2008-03-061-17/+44
| | | | | | NS::MLK-LISP-LIST. darcs-hash:a08cc3c06aacbea697dd8f661480469cf2a1b9bb
* Implement #/description (NS::MLK-LISP-VALUE).Matthias Benkard2008-03-061-0/+20
| | | | darcs-hash:40fcce373c4bbecb159aa9e51e52729864fa75d2
* Convert :ID, :CLASS, and :SELECTOR values returned by callbacks into pointers.Matthias Benkard2008-03-061-5/+8
| | | | darcs-hash:6a6f4e1acfe44e0ea057531a8254c0283b024522
* DEFINE-OBJECTIVE-C-CLASS: Reintern the class name in the OBJECTIVE-C-CLASSES ↵Matthias Benkard2008-03-051-1/+2
| | | | | | package before proceeding. darcs-hash:16df3fe0db3dba48a115177015b53fb8402484c1
* SHARED-INITIALIZE :AFTER (SELECTOR ...): Add a note about CMUCL.Matthias Benkard2008-03-051-2/+8
| | | | darcs-hash:8f43001b4a1f23eba62fef3c537b5b2442810c51
* COLLECT-METHODS: Do not free NULL pointers.Matthias Benkard2008-03-052-2/+4
| | | | darcs-hash:c65fd128ad2ff1b86c866e1982dc4ad7e5e884c5
* Fix a subtle compilation phase problem.Matthias Benkard2008-03-051-8/+10
| | | | darcs-hash:c9d6ba6df250ee32e7855c971e7e537ebf9a7dc6
* Admit defeat to CL-Markdown and code nested lists directly in HTML.Matthias Benkard2008-03-051-14/+23
| | | | darcs-hash:5a090d568fd3d11e46370af41ddeb08ab2c502b5
* Document OBJECTIVE-C-GENERIC-FUNCTION and OBJECTIVE-C-METHOD.Matthias Benkard2008-03-051-2/+31
| | | | darcs-hash:97cd663f2aa97f8dcaee5bdc3d467b2e92241430
* Document class OBJECTIVE-C-CLASS.Matthias Benkard2008-03-051-4/+24
| | | | darcs-hash:4133dbeb589fd1c29ec77b5242e7335b973e98aa
* Add function OBJECTIVE-C-CLASS-REGISTERED-P.Matthias Benkard2008-03-052-0/+48
| | | | darcs-hash:3e89853d61732a8fc928a1c3318dfaa648191e8c
* Document FOREIGN-VALUE, FOREIGN-STRUCT, and FOREIGN-UNION.Matthias Benkard2008-03-051-5/+57
| | | | darcs-hash:fb4f97a5b508a7d112fbe2b7397221389bdfd8f5
* Add new class FOREIGN-UNION.Matthias Benkard2008-03-051-4/+6
| | | | darcs-hash:8f87776dce528cb17cf292df0c5aa410fe924247
* Document FOREIGN-VALUE-LISP-MANAGED-P and FOREIGN-VALUE-POINTER.Matthias Benkard2008-03-051-2/+80
| | | | darcs-hash:28fe2a6f6d970312b95103a14631e6f58ee53635
* Export function FOREIGN-VALUE-POINTER.Matthias Benkard2008-03-051-0/+1
| | | | darcs-hash:7184e1f4ee9a4960f063209aef28297b6c29d6cc
* Assorted documentation improvements.Matthias Benkard2008-03-052-9/+12
| | | | darcs-hash:9f7b50833bb666d749ad8ab78ab72d7653b64001
* Document COLLECT-CLASSES and COLLECT-METHODS.Matthias Benkard2008-03-052-0/+60
| | | | darcs-hash:5f9f283cf4206188d49b9a7ac61f247e65ef72c5
* Document DEFINE-RETURNS-BOOLEAN-EXCEPTION and ↵Matthias Benkard2008-03-051-2/+77
| | | | | | UNDEFINE-RETURNS-BOOLEAN-EXCEPTION. darcs-hash:48f710780d299eb6dd9931b70dd1815ade8a060e
* Document DISABLE-METHOD-SYNTAX and DISABLE-OBJECTIVE-C-SYNTAX.Matthias Benkard2008-03-051-2/+22
| | | | darcs-hash:be718221954670a673eb722f4c53c07addde614d
* Fix documentation formatting.Matthias Benkard2008-03-052-12/+12
| | | | darcs-hash:511ea4147397dc61baabcd0ddc39c7ec01097163
* Improve DEFINE-OBJECTIVE-C-CLASS documentation.Matthias Benkard2008-03-052-0/+10
| | | | darcs-hash:11dd42d8010f57315e34a7f854c5664f3a65392f