diff options
author | Glenn Morris <rgm@gnu.org> | 2012-10-21 19:18:58 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-10-21 19:18:58 -0700 |
commit | 5fb904b0e48f82da36b4d54b467450a0b39afa27 (patch) | |
tree | 66745bd8aace70f5fcb65b8f895d5bbb83386c7d /doc/lispref/tips.texi | |
parent | ef44695952ad2baac8a111fb3012ec16c74fdd62 (diff) | |
download | emacs-5fb904b0e48f82da36b4d54b467450a0b39afa27.tar.gz |
* doc/lispref/tips.texi (Coding Conventions): Recommend cl-lib over cl.
Diffstat (limited to 'doc/lispref/tips.texi')
-rw-r--r-- | doc/lispref/tips.texi | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi index 0c7282c3586..4336baa128f 100644 --- a/doc/lispref/tips.texi +++ b/doc/lispref/tips.texi @@ -120,15 +120,18 @@ library when needed. This way people who don't use those aspects of your file do not need to load the extra library. @item -Please don't require the @code{cl} package of Common Lisp extensions at -run time. Use of this package is optional, and it is not part of the -standard Emacs namespace. If your package loads @code{cl} at run time, -that could cause name clashes for users who don't use that package. - -However, there is no problem with using the @code{cl} package at -compile time, with @code{(eval-when-compile (require 'cl))}. That's +If you need Common Lisp extensions, use the @code{cl-lib} library +rather than the old @code{cl} library. The latter does not +use a clean namespace (i.e., its definitions do not +start with a @samp{cl-} prefix). If your package loads @code{cl} at +run time, that could cause name clashes for users who don't use that +package. + +There is no problem with using the @code{cl} package at @emph{compile} +time, with @code{(eval-when-compile (require 'cl))}. That's sufficient for using the macros in the @code{cl} package, because the -compiler expands them before generating the byte-code. +compiler expands them before generating the byte-code. It is still +better to use the more modern @code{cl-lib} in this case, though. @item When defining a major mode, please follow the major mode |