diff options
| author | Glenn Morris | 2010-10-07 20:01:23 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-07 20:01:23 -0700 |
| commit | 12359245f6b9651541e00e6d59e07d6a25a4df8a (patch) | |
| tree | 1e482cf7477f71c1bb223c9fb8636027f0407d08 | |
| parent | cee3168b9d10a10f8cb6ac81d7872e59c79da265 (diff) | |
| download | emacs-12359245f6b9651541e00e6d59e07d6a25a4df8a.tar.gz emacs-12359245f6b9651541e00e6d59e07d6a25a4df8a.zip | |
Minor cl.texi change.
* doc/misc/cl.texi (Organization, Installation, Old CL Compatibility):
Deprecate cl-compat for new code.
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 16 |
2 files changed, 14 insertions, 7 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 785d3d425a0..238cec8e82b 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-10-08 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cl.texi (Organization, Installation, Old CL Compatibility): | ||
| 4 | Deprecate cl-compat for new code. | ||
| 5 | |||
| 1 | 2010-10-07 Glenn Morris <rgm@gnu.org> | 6 | 2010-10-07 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * eudc.texi (CCSO PH/QI, LDAP Requirements): Remove old information. | 8 | * eudc.texi (CCSO PH/QI, LDAP Requirements): Remove old information. |
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 948ba786066..780d53c9017 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi | |||
| @@ -206,11 +206,12 @@ will take care of pulling in the other files when they are | |||
| 206 | needed. | 206 | needed. |
| 207 | 207 | ||
| 208 | There is another file, @file{cl-compat.el}, which defines some | 208 | There is another file, @file{cl-compat.el}, which defines some |
| 209 | routines from the older @file{cl.el} package that are no longer | 209 | routines from the older @file{cl.el} package that are not otherwise |
| 210 | present in the new package. This includes internal routines | 210 | present in the new package. This includes internal routines |
| 211 | like @code{setelt} and @code{zip-lists}, deprecated features | 211 | like @code{setelt} and @code{zip-lists}, deprecated features |
| 212 | like @code{defkeyword}, and an emulation of the old-style | 212 | like @code{defkeyword}, and an emulation of the old-style |
| 213 | multiple-values feature. @xref{Old CL Compatibility}. | 213 | multiple-values feature. This file is obsolete and should not be used |
| 214 | in new code. @xref{Old CL Compatibility}. | ||
| 214 | 215 | ||
| 215 | @node Installation, Naming Conventions, Organization, Overview | 216 | @node Installation, Naming Conventions, Organization, Overview |
| 216 | @section Installation | 217 | @section Installation |
| @@ -221,9 +222,10 @@ to install anything. | |||
| 221 | 222 | ||
| 222 | If you do need to install it, just put the byte-compiled files | 223 | If you do need to install it, just put the byte-compiled files |
| 223 | @file{cl.elc}, @file{cl-extra.elc}, @file{cl-seq.elc}, | 224 | @file{cl.elc}, @file{cl-extra.elc}, @file{cl-seq.elc}, |
| 224 | @file{cl-macs.elc}, and @file{cl-compat.elc} into a directory on your | 225 | @file{cl-macs.elc}, and (if necessary) @file{cl-compat.elc} into a |
| 225 | @code{load-path}. Also, format the @file{cl.texi} file and put the | 226 | directory on your @code{load-path}. Also, format the @file{cl.texi} |
| 226 | resulting Info files into a directory in your @code{Info-directory-list}. | 227 | file and put the resulting Info files into a directory in your |
| 228 | @code{Info-directory-list}. | ||
| 227 | 229 | ||
| 228 | @node Naming Conventions, , Installation, Overview | 230 | @node Naming Conventions, , Installation, Overview |
| 229 | @section Naming Conventions | 231 | @section Naming Conventions |
| @@ -5048,8 +5050,8 @@ Lisp. | |||
| 5048 | @noindent | 5050 | @noindent |
| 5049 | The @dfn{CL} package includes emulations of some features of the | 5051 | The @dfn{CL} package includes emulations of some features of the |
| 5050 | old @file{cl.el}, in the form of a compatibility package | 5052 | old @file{cl.el}, in the form of a compatibility package |
| 5051 | @code{cl-compat}. To use it, put @code{(require 'cl-compat)} in | 5053 | @code{cl-compat}. This file is obsolete and may be removed in future, |
| 5052 | your program. | 5054 | so it should not be used in new code. |
| 5053 | 5055 | ||
| 5054 | The old package defined a number of internal routines without | 5056 | The old package defined a number of internal routines without |
| 5055 | @code{cl-} prefixes or other annotations. Call to these routines | 5057 | @code{cl-} prefixes or other annotations. Call to these routines |