summaryrefslogtreecommitdiff
path: root/Lisp/method-invocation.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-09-21 01:40:13 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-09-21 01:40:13 +0200
commit75c2ba4fc3f05d61beea196d64d85f5595864535 (patch)
treef0b8b3278a72d5daa07e242d110060f5d09d296f /Lisp/method-invocation.lisp
parentc9d12c3ac0b14ec509ab63ac8d915bcf33f5ae06 (diff)
Remove even more code that has become obsolete through the new version of INVOKE-BY-NAME.
darcs-hash:06fc98c5e106ac3fc0fd07ac5cc226ea431d265d
Diffstat (limited to 'Lisp/method-invocation.lisp')
-rw-r--r--Lisp/method-invocation.lisp10
1 files changed, 0 insertions, 10 deletions
diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp
index a2a21f2..94f1bb2 100644
--- a/Lisp/method-invocation.lisp
+++ b/Lisp/method-invocation.lisp
@@ -470,10 +470,6 @@ Returns: *result* --- the return value of the method invocation.
;;; (@* "Helper functions")
-(defun arglist->objc-arglist (arglist)
- (arglist-intersperse-types (mapcar #'lisp->obj-data arglist)))
-
-
(defun dealloc-objc-arglist (objc-arglist)
(do ((objc-arglist objc-arglist (cddr objc-arglist)))
((null objc-arglist))
@@ -481,12 +477,6 @@ Returns: *result* --- the return value of the method invocation.
(dealloc-obj-data (second objc-arglist))))
-(defun arglist-intersperse-types (arglist)
- (mapcan #'(lambda (arg)
- (list :pointer arg))
- arglist))
-
-
(defun constructor-name-p (method-name)
(flet ((method-name-starts-with (prefix)
(and (>= (length method-name) (length prefix))