diff options
| author | Glenn Morris | 2012-10-28 18:19:26 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-10-28 18:19:26 -0700 |
| commit | a3c5b619fc4c1334c4d295def008318ae0e9bca7 (patch) | |
| tree | 7f03f12112321cd2e6856edad0856dbab51eaced /doc/misc | |
| parent | f1e1b6f3d38175ac7f84d9136bd5b8d4bc9f74e7 (diff) | |
| download | emacs-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/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 5 |
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 @@ | |||
| 1 | 2012-10-29 Glenn Morris <rgm@gnu.org> | 1 | 2012-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 | ||
| 5 | 2012-10-28 Glenn Morris <rgm@gnu.org> | 6 | 2012-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 |
| 968 | A call of the form @code{(apply '@var{func} @dots{})} or | 970 | A 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 | |||
| 972 | Emacs place functions are suitable in this sense, this feature is | 974 | Emacs place functions are suitable in this sense, this feature is |
| 973 | only interesting when used with places you define yourself with | 975 | only 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 |
| 977 | A macro call, in which case the macro is expanded and @code{setf} | 980 | A 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 |
| 981 | Any form for which a @code{defsetf} or @code{define-setf-method} | 984 | Any form for which a @code{defsetf} or @code{define-setf-method} |
| 982 | has been made. | 985 | has 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. |