Remove description of METHOD macro; it hasn't been supported in a long
authorChris Hanson <org/chris-hanson/cph>
Thu, 7 Mar 2002 06:26:11 +0000 (06:26 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 7 Mar 2002 06:26:11 +0000 (06:26 +0000)
time.

v7/doc/sos/sos.texinfo

index af96917c16744e2959de8d5d08fb02541d9544db..4595b1229ace5beec9a56d2b6b08bffc34ac2f14 100644 (file)
@@ -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 <foo>) b)
-  (cons b a))
-
-(add-method g
-  (method ((a <foo>) b)
-    (cons b a)))
-
-(add-method g
-  (make-method (list <foo>)
-    (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