From: Chris Hanson Date: Thu, 7 Mar 2002 06:26:11 +0000 (+0000) Subject: Remove description of METHOD macro; it hasn't been supported in a long X-Git-Tag: 20090517-FFI~2203 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=de42f97dd61f0312c0161ad235c3505e26880303;p=mit-scheme.git Remove description of METHOD macro; it hasn't been supported in a long time. --- diff --git a/v7/doc/sos/sos.texinfo b/v7/doc/sos/sos.texinfo index af96917c1..4595b1229 100644 --- a/v7/doc/sos/sos.texinfo +++ b/v7/doc/sos/sos.texinfo @@ -12,7 +12,7 @@ @syncodeindex pg fn @syncodeindex tp fn -@c $Id: sos.texinfo,v 2.10 2002/03/07 06:24:02 cph Exp $ +@c $Id: sos.texinfo,v 2.11 2002/03/07 06:26:11 cph Exp $ @set TITLE The SOS Reference Manual @set EDITION 2.9 @@ -1422,34 +1422,6 @@ details). If the @code{define-method} body refers to this variable, the defined method is a chained method, otherwise it is an ordinary method. @end deffn -@ifset dontsetme - -@deffn Syntax method lambda-list body @dots{} -This special form evaluates to an anonymous method in the same way that -@code{lambda} evaluates to an anonymous procedure. @var{Lambda-list} -and @var{body} have exactly the same syntax and semantics as the -corresponding parts of @code{define-method}. Note that the following -are completely equivalent: - -@lisp -@group -(define-method g ((a ) b) - (cons b a)) - -(add-method g - (method ((a ) b) - (cons b a))) - -(add-method g - (make-method (list ) - (lambda (a b) - (cons b a)))) -@end group -@end lisp -@end deffn - -@end ifset - @node Chained Methods, Computed Methods, Method Syntax, Methods @section Chained Methods