X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fpcl%2Fvector.lisp;h=231ca8d1a711ecaa132c3acaaf1e84458e456a94;hb=69ef68ba7393e3492c1b4a756d1140f71c2922bc;hp=9a8f51d4dec9cceaef59517efb4d6cf0ecdeb286;hpb=cce46771e6d734c275f3e2d5620004da3b5d09ee;p=sbcl.git diff --git a/src/pcl/vector.lisp b/src/pcl/vector.lisp index 9a8f51d..231ca8d 100644 --- a/src/pcl/vector.lisp +++ b/src/pcl/vector.lisp @@ -1044,7 +1044,7 @@ (defun name-method-lambda (method-lambda) (let ((method-name (body-method-name (cddr method-lambda)))) (if method-name - `(named-lambda (method ,method-name) ,(rest method-lambda)) + `(named-lambda (slow-method ,method-name) ,(rest method-lambda)) method-lambda))) (defun make-method-initargs-form-internal (method-lambda initargs env) @@ -1151,13 +1151,7 @@ (apply fmf pv-cell nmc (nconc args (list rest)))) (apply fmf pv-cell nmc method-args))))) (let* ((fname (method-function-get fmf :name)) - (name `(,(or (get (car fname) 'method-sym) - (setf (get (car fname) 'method-sym) - (let ((str (symbol-name (car fname)))) - (if (string= "FAST-" str :end2 5) - (format-symbol *pcl-package* (subseq str 5)) - (car fname))))) - ,@(cdr fname)))) + (name (cons 'slow-method (cdr fname)))) (set-fun-name method-function name)) (setf (method-function-get method-function :fast-function) fmf) method-function))