From: Vladimir Zolotykh
Subject: (no subject)
Date: 
Message-ID: <3D157B77.E1DCC5FA@eurocom.od.ua>
Can someone be so kind to explain me the meanings of

  (fmakunbound '(method accept-method :around (student t t t t t)))

What the argument to FMAKUNBOUND is ?

Example from ACL6.1 CLIM2.2 UG.

-- 
Vladimir Zolotykh

From: Karsten Poeck
Subject: Re: (no subject)
Date: 
Message-ID: <af42gn$b5o$1@news.wanadoo.es>
Seems like a shorter way to call (remove-method ... (find-method))
Assuming first arg is 'method
Second and first look like method name and method qualifier
and the last like the lambda-list

Try the following:

(defclass blah ()
  ()
  )

(defmethod baeh ((me blah))
  (print "baeh"))

(defmethod baeh :around ((me blah))
  (print "Around baeh")
  (call-next-method))


(baeh (make-instance 'blah))

(fmakunbound '(method baeh :around (blah)))

(baeh (make-instance 'blah))

"Vladimir Zolotykh" <······@eurocom.od.ua> wrote in message
······················@eurocom.od.ua...
> Can someone be so kind to explain me the meanings of
>
>   (fmakunbound '(method accept-method :around (student t t t t t)))
>
> What the argument to FMAKUNBOUND is ?
>
> Example from ACL6.1 CLIM2.2 UG.
>
> --
> Vladimir Zolotykh
From: Vladimir Zolotykh
Subject: Re: (no subject)
Date: 
Message-ID: <3D15A8B5.BBEFB685@eurocom.od.ua>
Karsten Poeck wrote:
> 
> Seems like a shorter way to call (remove-method ... (find-method))

Yes I've guessed so. Is this ACL extension to FMAKUNBOUND behavior ?
Is this documented somewhere ?

-- 
Vladimir Zolotykh
From: Martin Simmons
Subject: Re: (no subject)
Date: 
Message-ID: <3d198dcc$0$233$ed9e5944@reading.news.pipex.net>
"Vladimir Zolotykh" <······@eurocom.od.ua> wrote in message
······················@eurocom.od.ua...
> Karsten Poeck wrote:
> >
> > Seems like a shorter way to call (remove-method ... (find-method))
>
> Yes I've guessed so. Is this ACL extension to FMAKUNBOUND behavior ?

It certainly isn't ANSI.
--
Martin Simmons, Xanalys Software Tools
······@xanalys.com
rot13 to reply
From: Vladimir Zolotykh
Subject: Re: RARE USE OF FMAKUNBOUND
Date: 
Message-ID: <3D159057.B253C16F@eurocom.od.ua>
Sorry, just forgot about subject. Let it be
RARE USE OF FMAKUNBOUND

Vladimir Zolotykh wrote:
> 
> Can someone be so kind to explain me the meanings of
> 
>   (fmakunbound '(method accept-method :around (student t t t t t)))
> 
> What the argument to FMAKUNBOUND is ?
> 
> Example from ACL6.1 CLIM2.2 UG.
> 
> --
> Vladimir Zolotykh

-- 
Vladimir Zolotykh