From: Glenn Morris Date: Mon, 29 Oct 2012 01:19:26 +0000 (-0700) Subject: * cl.texi (Setf Extensions): Remove `apply' setf since it seems to be disabled. X-Git-Tag: emacs-24.2.90~209^2~26 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a3c5b619fc4c1334c4d295def008318ae0e9bca7;p=emacs.git * cl.texi (Setf Extensions): Remove `apply' setf since it seems to be disabled. --- diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 8c9573aa00c..9aeaf87426e 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,6 +1,7 @@ 2012-10-29 Glenn Morris * cl.texi (Organization): More details on cl-lib.el versus cl.el. + (Setf Extensions): Remove `apply' setf since it seems to be disabled. 2012-10-28 Glenn Morris diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index f05d72362d3..b77dfcd94be 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -964,6 +964,8 @@ also works in this way by replacing a portion of the current buffer. @c FIXME? Also `eq'? (see cl-lib.el) +@c Currently commented out in cl.el. +@ignore @item A call of the form @code{(apply '@var{func} @dots{})} or @code{(apply (function @var{func}) @dots{})}, where @var{func} @@ -972,6 +974,7 @@ in the sense described in Steele's book; since none of the standard Emacs place functions are suitable in this sense, this feature is only interesting when used with places you define yourself with @code{define-setf-method} or the long form of @code{defsetf}. +@end ignore @item A macro call, in which case the macro is expanded and @code{setf} @@ -979,7 +982,7 @@ is applied to the resulting form. @item Any form for which a @code{defsetf} or @code{define-setf-method} -has been made. +has been made. @xref{Obsolete Setf Customization}. @end itemize @c FIXME should this be in lispref? It seems self-evident.