aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2012-10-28 18:19:26 -0700
committerGlenn Morris2012-10-28 18:19:26 -0700
commita3c5b619fc4c1334c4d295def008318ae0e9bca7 (patch)
tree7f03f12112321cd2e6856edad0856dbab51eaced /doc/misc
parentf1e1b6f3d38175ac7f84d9136bd5b8d4bc9f74e7 (diff)
downloademacs-a3c5b619fc4c1334c4d295def008318ae0e9bca7.tar.gz
emacs-a3c5b619fc4c1334c4d295def008318ae0e9bca7.zip
* cl.texi (Setf Extensions): Remove `apply' setf since it seems to be disabled.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/ChangeLog1
-rw-r--r--doc/misc/cl.texi5
2 files changed, 5 insertions, 1 deletions
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 @@
12012-10-29 Glenn Morris <rgm@gnu.org> 12012-10-29 Glenn Morris <rgm@gnu.org>
2 2
3 * cl.texi (Organization): More details on cl-lib.el versus cl.el. 3 * cl.texi (Organization): More details on cl-lib.el versus cl.el.
4 (Setf Extensions): Remove `apply' setf since it seems to be disabled.
4 5
52012-10-28 Glenn Morris <rgm@gnu.org> 62012-10-28 Glenn Morris <rgm@gnu.org>
6 7
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.
964 964
965@c FIXME? Also `eq'? (see cl-lib.el) 965@c FIXME? Also `eq'? (see cl-lib.el)
966 966
967@c Currently commented out in cl.el.
968@ignore
967@item 969@item
968A call of the form @code{(apply '@var{func} @dots{})} or 970A call of the form @code{(apply '@var{func} @dots{})} or
969@code{(apply (function @var{func}) @dots{})}, where @var{func} 971@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
972Emacs place functions are suitable in this sense, this feature is 974Emacs place functions are suitable in this sense, this feature is
973only interesting when used with places you define yourself with 975only interesting when used with places you define yourself with
974@code{define-setf-method} or the long form of @code{defsetf}. 976@code{define-setf-method} or the long form of @code{defsetf}.
977@end ignore
975 978
976@item 979@item
977A macro call, in which case the macro is expanded and @code{setf} 980A macro call, in which case the macro is expanded and @code{setf}
@@ -979,7 +982,7 @@ is applied to the resulting form.
979 982
980@item 983@item
981Any form for which a @code{defsetf} or @code{define-setf-method} 984Any form for which a @code{defsetf} or @code{define-setf-method}
982has been made. 985has been made. @xref{Obsolete Setf Customization}.
983@end itemize 986@end itemize
984 987
985@c FIXME should this be in lispref? It seems self-evident. 988@c FIXME should this be in lispref? It seems self-evident.