diff options
| author | Glenn Morris | 2010-10-05 19:19:42 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-05 19:19:42 -0700 |
| commit | 6003ea5325a407a2bed17317f86e25ebe31fb92d (patch) | |
| tree | ef5dd9a1dad2b72f6bb2e1cef23eb3470ba144ad /doc | |
| parent | 397ae2261860609d3f320b9c4255ca8f92353c50 (diff) | |
| download | emacs-6003ea5325a407a2bed17317f86e25ebe31fb92d.tar.gz emacs-6003ea5325a407a2bed17317f86e25ebe31fb92d.zip | |
* doc/misc/cl.texi (Usage, Installation): Remove outdated information.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 44 |
2 files changed, 12 insertions, 36 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 322be57330d..accf71c2d69 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-06 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cl.texi (Usage, Installation): Remove outdated information. | ||
| 4 | |||
| 1 | 2010-08-26 Michael Albinus <michael.albinus@gmx.de> | 5 | 2010-08-26 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | Sync with Tramp 2.1.19. | 7 | Sync with Tramp 2.1.19. |
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 755b2f3f1b7..948ba786066 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi | |||
| @@ -163,19 +163,6 @@ include at the beginning: | |||
| 163 | @end example | 163 | @end example |
| 164 | 164 | ||
| 165 | @noindent | 165 | @noindent |
| 166 | If you want to ensure that the new (Gillespie) version of @dfn{CL} | ||
| 167 | is the one that is present, add an additional @code{(require 'cl-19)} | ||
| 168 | call: | ||
| 169 | |||
| 170 | @example | ||
| 171 | (require 'cl) | ||
| 172 | (require 'cl-19) | ||
| 173 | @end example | ||
| 174 | |||
| 175 | @noindent | ||
| 176 | The second call will fail (with ``@file{cl-19.el} not found'') if | ||
| 177 | the old @file{cl.el} package was in use. | ||
| 178 | |||
| 179 | It is safe to arrange to load @dfn{CL} at all times, e.g., | 166 | It is safe to arrange to load @dfn{CL} at all times, e.g., |
| 180 | in your @file{.emacs} file. But it's a good idea, for portability, | 167 | in your @file{.emacs} file. But it's a good idea, for portability, |
| 181 | to @code{(require 'cl)} in your code even if you do this. | 168 | to @code{(require 'cl)} in your code even if you do this. |
| @@ -229,29 +216,14 @@ multiple-values feature. @xref{Old CL Compatibility}. | |||
| 229 | @section Installation | 216 | @section Installation |
| 230 | 217 | ||
| 231 | @noindent | 218 | @noindent |
| 232 | Installation of the @dfn{CL} package is simple: Just put the | 219 | The @dfn{CL} package is distributed with Emacs, so there is no need |
| 233 | byte-compiled files @file{cl.elc}, @file{cl-extra.elc}, | 220 | to install anything. |
| 234 | @file{cl-seq.elc}, @file{cl-macs.elc}, and @file{cl-compat.elc} | 221 | |
| 235 | into a directory on your @code{load-path}. | 222 | If you do need to install it, just put the byte-compiled files |
| 236 | 223 | @file{cl.elc}, @file{cl-extra.elc}, @file{cl-seq.elc}, | |
| 237 | There are no special requirements to compile this package: | 224 | @file{cl-macs.elc}, and @file{cl-compat.elc} into a directory on your |
| 238 | The files do not have to be loaded before they are compiled, | 225 | @code{load-path}. Also, format the @file{cl.texi} file and put the |
| 239 | nor do they need to be compiled in any particular order. | 226 | resulting Info files into a directory in your @code{Info-directory-list}. |
| 240 | |||
| 241 | You may choose to put the files into your main @file{lisp/} | ||
| 242 | directory, replacing the original @file{cl.el} file there. Or, | ||
| 243 | you could put them into a directory that comes before @file{lisp/} | ||
| 244 | on your @code{load-path} so that the old @file{cl.el} is | ||
| 245 | effectively hidden. | ||
| 246 | |||
| 247 | Also, format the @file{cl.texinfo} file and put the resulting | ||
| 248 | Info files in the @file{info/} directory or another suitable place. | ||
| 249 | |||
| 250 | You may instead wish to leave this package's components all in | ||
| 251 | their own directory, and then add this directory to your | ||
| 252 | @code{load-path} and @code{Info-directory-list}. | ||
| 253 | Add the directory to the front of the list so the old @dfn{CL} | ||
| 254 | package and its documentation are hidden. | ||
| 255 | 227 | ||
| 256 | @node Naming Conventions, , Installation, Overview | 228 | @node Naming Conventions, , Installation, Overview |
| 257 | @section Naming Conventions | 229 | @section Naming Conventions |